diff options
Diffstat (limited to 'src/zenutil/logging.cpp')
| -rw-r--r-- | src/zenutil/logging.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenutil/logging.cpp b/src/zenutil/logging.cpp index eef6a59ce..4f8c5e59e 100644 --- a/src/zenutil/logging.cpp +++ b/src/zenutil/logging.cpp @@ -80,7 +80,7 @@ BeginInitializeLogging(const LoggingOptions& LogOptions) zen::CreateDirectories(LogOptions.AbsLogFile.parent_path()); } - FileSink = std::make_shared<zen::logging::RotatingFileSink>(zen::PathToUtf8(LogOptions.AbsLogFile), + FileSink = std::make_shared<zen::logging::RotatingFileSink>(LogOptions.AbsLogFile, /* max size */ 128 * 1024 * 1024, /* max files */ 16, /* rotate on open */ true); |