Skip to content

Commit 98ea78f

Browse files
Apply suggestions from code review
Co-authored-by: Andy Butland <[email protected]>
1 parent 50bfb22 commit 98ea78f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

16/umbraco-cms/fundamentals/backoffice/logviewer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public class AzureTableLogsRepository : LogViewerRepositoryBase
6868

6969
protected override IEnumerable<ILogEntry> GetLogs(LogTimePeriod logTimePeriod, ILogFilter logFilter)
7070
{
71-
// This example uses a connetionstring compatible with the Azurite emulator
71+
// This example uses a connection string compatible with the Azurite emulator
7272
// https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azurite
7373
var client =
7474
new TableClient(

16/umbraco-cms/fundamentals/code/debugging/logging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Serilog can be configured and extended by using the .NET Core configuration such
119119

120120
## The UmbracoFile Sink
121121

122-
Serilog uses the concept of Sinks to output the log messages to different places. Umbraco ships with a custom sink configuration called UmbracoFile that uses the [Serilog.Sinks.File](https://github.com/serilog/serilog-sinks-file) sink to save the logs to a rolling file on disk in the Umbraco. You can disable this sink by setting its Enabled configuration flag to false, see [Serilog config](../../../reference/configuration/serilog.md) for more information.
122+
Serilog uses the concept of Sinks to output the log messages to different places. Umbraco ships with a custom sink configuration called UmbracoFile that uses the [Serilog.Sinks.File](https://github.com/serilog/serilog-sinks-file) sink. This will save the logs to a rolling file on disk. You can disable this sink by setting its Enabled configuration flag to false, see [Serilog config](../../../reference/configuration/serilog.md) for more information.
123123

124124
## The logviewer dashboard
125125

0 commit comments

Comments
 (0)