We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a55b9ae commit 10ff017Copy full SHA for 10ff017
Sources/Falko.ZeroLogger.Targets.File/Targets/LoggerFileTarget.cs
@@ -21,9 +21,9 @@ public sealed class LoggerFileTarget : LoggerTarget
21
private static readonly string ApplicationDirectory = AppDomain.CurrentDomain.BaseDirectory;
22
23
#if NET9_0_OR_GREATER
24
- private static readonly Lock Locker = new();
+ private readonly Lock _locker = new();
25
#else
26
- private static readonly object Locker = new();
+ private readonly object _locker = new();
27
#endif
28
29
private readonly string _directoryPath;
0 commit comments