Hi,
If you think this behavior is confusing please open a bug on the issue
tracker with your recommendation and the maintainers will consider it.
http://code.google.com/p/google-api-adwords-php/issues/list
Best,
- Eric Koleda, AdWords API Team
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Ok. I figured out why.
PATH_RELATIVE = "1"
LIB_LOG_DIR_PATH = "../../../../../../../../../logs/"
The folder specified in my settings.ini does not exists so the library
uses the folder where AdsUser class resides.
As long as LIB_LOG_DIR_PATH exists it should be fine.
The code that does this is
I'm using PHP adwords client version 3.0.0
Logger::LogToFile(Logger::$SOAP_XML_LOG, "/tmp/soap_xml.log");
Logger::SetLogLevel(Logger::$SOAP_XML_LOG, Logger::$INFO);
Logger::LogToFile(Logger::$REQUEST_INFO_LOG, "/tmp/request_info.log");
Logger::SetLogLevel(Logger::$REQUEST_INFO_LOG, Logger::$INFO)