File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ Serilogger logs can be enabled for **OAuth2PlatformClient** using the following
4343 oauthClient.EnableSerilogRequestResponseLoggingForDebug = true;
4444 oauthClient.EnableSerilogRequestResponseLoggingForRollingFile = true;
4545 oauthClient.EnableSerilogRequestResponseLoggingForTrace = true;
46- oauthClient.ServiceRequestLoggingLocationForFile = @"C:\Documents\Serilog_log";
46+ oauthClient.ServiceRequestLoggingLocationForFile = @"C:\Documents\Serilog_log";//Any drive logging location
4747
4848
4949Serilogger logs can be enabled for ** QBO Api calls** using the following lines -
@@ -54,12 +54,12 @@ ServiceContext context = new ServiceContext(dictionary["realmId"], IntuitService
5454 context.IppConfiguration.AdvancedLogger.RequestAdvancedLog.EnableSerilogRequestResponseLoggingForConsole = true;
5555 context.IppConfiguration.AdvancedLogger.RequestAdvancedLog.EnableSerilogRequestResponseLoggingForTrace = true;
5656 context.IppConfiguration.AdvancedLogger.RequestAdvancedLog.EnableSerilogRequestResponseLoggingForDebug = true;
57- context.IppConfiguration.AdvancedLogger.RequestAdvancedLog.ServiceRequestLoggingLocationForFile = @"C:\Documents\Serilog_log";
57+ context.IppConfiguration.AdvancedLogger.RequestAdvancedLog.ServiceRequestLoggingLocationForFile = @"C:\Documents\Serilog_log"; //Any drive logging location
5858
5959Old file based logs can be enabled by using the following lines-
6060
6161 context.IppConfiguration.Logger.RequestLog.EnableRequestResponseLogging = true;
62- context.IppConfiguration.Logger.RequestLog.ServiceRequestLoggingLocation = @"C:\Documents\Serilog_log";
62+ context.IppConfiguration.Logger.RequestLog.ServiceRequestLoggingLocation = @"C:\Documents\Serilog_log"; //Any drive logging location
6363
6464Fiddler logs are really useful too. You can enable them by following the steps below-
6565
You can’t perform that action at this time.
0 commit comments