Skip to content

Commit 5d7afa1

Browse files
authored
Update README.md
1 parent b98e822 commit 5d7afa1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
4949
Serilogger 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
5959
Old 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
6464
Fiddler logs are really useful too. You can enable them by following the steps below-
6565

0 commit comments

Comments
 (0)