diff options
| author | Dan Engelbrecht <[email protected]> | 2025-08-26 14:05:15 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-08-26 14:05:15 +0200 |
| commit | 0cc32cae5e3fb832bbad584ce86a308dc6104c46 (patch) | |
| tree | 33d81192d767864b5149aeece975b321ef04a00a /src/zenserver/diag | |
| parent | improve console output (#476) (diff) | |
| download | zen-0cc32cae5e3fb832bbad584ce86a308dc6104c46.tar.xz zen-0cc32cae5e3fb832bbad584ce86a308dc6104c46.zip | |
rework `--quiet` zenserver option add `--noconsole` option (#477)
- Improvement: Changed zenserver `--quiet` option to suppress INFO level messages and below to surface startup and runtime errors
- Feature: Added `--noconsole` option that suppresses all output to standard out, this works as the `--quiet` option used to work
Diffstat (limited to 'src/zenserver/diag')
| -rw-r--r-- | src/zenserver/diag/logging.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zenserver/diag/logging.cpp b/src/zenserver/diag/logging.cpp index f3d3377b0..34d9b05b7 100644 --- a/src/zenserver/diag/logging.cpp +++ b/src/zenserver/diag/logging.cpp @@ -27,6 +27,7 @@ InitializeServerLogging(const ZenServerOptions& InOptions) .IsVerbose = false, .IsTest = InOptions.IsTest, .NoConsoleOutput = InOptions.NoConsoleOutput, + .QuietConsole = InOptions.QuietConsole, .AbsLogFile = InOptions.AbsLogFile, .LogId = InOptions.LogId}; |