Skip to content

Commit 8fda24a

Browse files
FORMAT
1 parent 829fa00 commit 8fda24a

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

Core.MemoryLog/Core.MemoryLog.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
<ItemGroup>
1010
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.9" />
1111
</ItemGroup>
12-
13-
</Project>
12+
13+
</Project>

Core.MemoryLog/IInMemoryLogger.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
*/
88

99
// ReSharper disable UnusedMemberInSuper.Global
10+
// ReSharper disable MemberCanBeInternal
11+
// ReSharper disable UnusedMember.Global
1012

1113
using System.Runtime.CompilerServices;
1214

Core.MemoryLog/ILogger.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
* PROGRAMMER: Peter Geinitz (Wayfarer)
77
*/
88

9+
// ReSharper disable UnusedMemberInSuper.Global
10+
// ReSharper disable UnusedMember.Global
11+
912
namespace Core.MemoryLog
1013
{
1114
/// <summary>

Core.MemoryLog/InMemoryLogger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ public bool IsEnabled(Microsoft.Extensions.Logging.LogLevel logLevel)
390390
/// <param name="exception">The exception.</param>
391391
/// <param name="formatter">The formatter.</param>
392392
public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception,
393-
Func<TState, Exception, string?> formatter)
393+
Func<TState, Exception, string?>? formatter)
394394
{
395395
if (!IsEnabled(logLevel)) return;
396396

0 commit comments

Comments
 (0)