Skip to content

Commit 49b9f83

Browse files
authored
Let's not use "we"
1 parent 6d58055 commit 49b9f83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Azure Table Storage requires entities to implement the `ITableEntity` interface.
147147

148148
### Creating a custom log viewer service
149149

150-
The next thing we need to do is create a new implementation of `ILogViewerService`. Amongst other things, this is responsible for figuring out whether a provided log query is allowed. Again a base class is available.
150+
The next thing to do is create a new implementation of `ILogViewerService`. Amongst other things, this is responsible for figuring out whether a provided log query is allowed. Again a base class is available.
151151

152152
```csharp
153153
public class AzureTableLogsService : LogViewerServiceBase
@@ -161,7 +161,7 @@ public class AzureTableLogsService : LogViewerServiceBase
161161
}
162162

163163
// Change this to what you think is sensible.
164-
// As an example we check whether more than 5 days off logs are requested.
164+
// As an example, check whether more than 5 days off logs are requested.
165165
public override Task<Attempt<bool, LogViewerOperationStatus>> CanViewLogsAsync(LogTimePeriod logTimePeriod)
166166
{
167167
return logTimePeriod.EndTime - logTimePeriod.StartTime < TimeSpan.FromDays(5)

0 commit comments

Comments
 (0)