예제 #1
0
파일: AdsUser.php 프로젝트: Katoga/g-ads
 /**
  * Configures the library to log all requests.
  */
 public function LogAll()
 {
     Logger::SetLogLevel(Logger::$SOAP_XML_LOG, Logger::$INFO);
     Logger::SetLogLevel(Logger::$REQUEST_INFO_LOG, Logger::$INFO);
 }
예제 #2
0
 /**
  * Overrides AdsUser::LogAll(), setting an additional log level for report download requests.
  */
 public function LogAll()
 {
     parent::LogAll();
     Logger::SetLogLevel(ReportUtils::$LOG_NAME, Logger::$INFO);
 }