Hi Team,
We are trying to log Google Ads API calls request and response similar to we had in Adwords API call. We already have required maven dependencies configured in pom.xml like below . Also in log4j.xml we are trying to have the logs redirected to our local. But we are not getting the logs:
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.25</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
Log4j.xml(config)
<appender name="ABC" class="org.apache.log4j.RollingFileAppender">
<param name="File" value="C:/ABC.log" /