diff options
| author | Stefan Boberg <[email protected]> | 2025-11-24 11:05:29 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-11-24 11:05:29 +0100 |
| commit | e5eccea44a3e6a80d3b24ad2113bfeea86c62827 (patch) | |
| tree | baad4e4a7ab43079e08e0842a67d16f6d5eb6404 /src/zenserver/zenserver.cpp | |
| parent | add Deploy.md and ability to specify a version via --version (#663) (diff) | |
| download | zen-e5eccea44a3e6a80d3b24ad2113bfeea86c62827.tar.xz zen-e5eccea44a3e6a80d3b24ad2113bfeea86c62827.zip | |
logging improvements (#664)
* Eliminate spurious `FlushFileBuffers` calls on Windows by tracking writes
* Make cache log file creation optional
Diffstat (limited to 'src/zenserver/zenserver.cpp')
| -rw-r--r-- | src/zenserver/zenserver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenserver/zenserver.cpp b/src/zenserver/zenserver.cpp index 5408f2f0b..e83624bbb 100644 --- a/src/zenserver/zenserver.cpp +++ b/src/zenserver/zenserver.cpp @@ -505,7 +505,7 @@ ZenServerMain::Run() } } - InitializeServerLogging(m_ServerOptions); + InitializeServerLogging(m_ServerOptions, /* WithCacheService */ true); ZEN_INFO("Command line: {}", m_ServerOptions.CommandLine); |