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 e8abd7c commit a75a5c4Copy full SHA for a75a5c4
Flow.Launcher.Infrastructure/Logger/Log.cs
@@ -26,9 +26,11 @@ static Log()
26
}
27
28
var configuration = new LoggingConfiguration();
29
- var fileTarget = new FileTarget();
30
- fileTarget.FileName = CurrentLogDirectory.Replace(@"\", "/") + "/${shortdate}.txt";
31
-
+ var fileTarget = new FileTarget
+ {
+ FileName = CurrentLogDirectory.Replace(@"\", "/") + "/${shortdate}.txt"
32
+ };
33
+
34
var fileTargetASyncWrapper = new AsyncTargetWrapper(fileTarget);
35
configuration.AddTarget("file", fileTargetASyncWrapper);
36
#if DEBUG
0 commit comments