diff options
| author | Stefan Boberg <[email protected]> | 2021-10-18 19:38:55 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-10-18 19:38:55 +0200 |
| commit | 1137767a4bf58f49a47e25da1cb86f90bc5e2606 (patch) | |
| tree | 10b20e3b1728b6dd3f903a937e11bade28f5f455 | |
| parent | gc: moved GcContect from CAS into gc files (diff) | |
| download | zen-1137767a4bf58f49a47e25da1cb86f90bc5e2606.tar.xz zen-1137767a4bf58f49a47e25da1cb86f90bc5e2606.zip | |
minor: comment edits
| -rw-r--r-- | zenserver/diag/logging.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zenserver/diag/logging.cpp b/zenserver/diag/logging.cpp index 6e2559f1f..74c5c2101 100644 --- a/zenserver/diag/logging.cpp +++ b/zenserver/diag/logging.cpp @@ -272,12 +272,12 @@ InitializeLogging(const ZenServerOptions& GlobalOptions) auto HttpLogger = std::make_shared<spdlog::logger>("http_requests", HttpSink); spdlog::register_logger(HttpLogger); - // Jupiter - only log HTTP traffic to file + // Jupiter - only log upstream HTTP traffic to file auto JupiterLogger = std::make_shared<spdlog::logger>("jupiter", FileSink); spdlog::register_logger(JupiterLogger); - // Zen - only log HTTP traffic to file + // Zen - only log upstream HTTP traffic to file auto ZenClientLogger = std::make_shared<spdlog::logger>("zenclient", FileSink); spdlog::register_logger(ZenClientLogger); |