Skip to content

Commit aaddb0f

Browse files
committed
Adding image of Viewer
1 parent bc2d1b9 commit aaddb0f

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

  • samples/LoggingReflectInsight/WebApi.ReflectInsightSample

samples/LoggingReflectInsight/WebApi.ReflectInsightSample/Startup.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,26 +76,32 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerF
7676

7777
logger.LogDebug("LogDebug");
7878
logger.LogDebug("LogDebug", exception);
79+
logger.LogDebug(logValues, "LogDebug", exception);
7980
logger.LogDebug(logValues, exception);
8081

8182
logger.LogVerbose("LogVerbose");
8283
logger.LogVerbose("LogVerbose", exception);
84+
logger.LogVerbose(logValues, "LogVerbose", exception);
8385
logger.LogVerbose(logValues, exception);
8486

8587
logger.LogInformation("LogInformation");
8688
logger.LogInformation("LogInformation", exception);
89+
logger.LogInformation(logValues, "LogInformation", exception);
8790
logger.LogInformation(logValues, exception);
8891

8992
logger.LogWarning("LogWarning");
9093
logger.LogWarning("LogWarning", exception);
94+
logger.LogWarning(logValues, "LogWarning", exception);
9195
logger.LogWarning(logValues, exception);
9296

9397
logger.LogError("LogError");
9498
logger.LogError("LogError", exception);
99+
logger.LogError(logValues, "LogError", exception);
95100
logger.LogError(logValues, exception);
96101

97102
logger.LogCritical("LogCritical");
98103
logger.LogCritical("LogCritical", exception);
104+
logger.LogCritical(logValues, "LogCritical", exception);
99105
logger.LogCritical(logValues, exception);
100106
}
101107

0 commit comments

Comments
 (0)