diff options
| author | Dan Engelbrecht <[email protected]> | 2025-12-17 14:06:09 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-12-17 14:06:09 +0100 |
| commit | 52e716bd47b81f6ace98717d86b57fa1e22a2af6 (patch) | |
| tree | a822bd8dd9e05ce84d7f7817b70aac7a272c6edd /src/zenhttp/servers/httpasio.cpp | |
| parent | 5.7.15-pre1 (diff) | |
| download | zen-52e716bd47b81f6ace98717d86b57fa1e22a2af6.tar.xz zen-52e716bd47b81f6ace98717d86b57fa1e22a2af6.zip | |
remove error warning in output (#695)
* changed some logging string so they don't get caught in CI logging
Diffstat (limited to 'src/zenhttp/servers/httpasio.cpp')
| -rw-r--r-- | src/zenhttp/servers/httpasio.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/zenhttp/servers/httpasio.cpp b/src/zenhttp/servers/httpasio.cpp index 4a0edfd29..a0431b0b1 100644 --- a/src/zenhttp/servers/httpasio.cpp +++ b/src/zenhttp/servers/httpasio.cpp @@ -857,7 +857,7 @@ struct HttpAcceptor if (BindErrorCode == asio::error::address_in_use) { - ZEN_INFO("Desired port {} is in use (error: '{}'), retrying", EffectivePort, BindErrorCode.message()); + ZEN_INFO("Desired port {} is in use (bind returned '{}'), retrying", EffectivePort, BindErrorCode.message()); Sleep(500); m_Acceptor.bind(asio::ip::tcp::endpoint(BindAddress, EffectivePort), BindErrorCode); } @@ -873,7 +873,7 @@ struct HttpAcceptor if (BindErrorCode) { - ZEN_INFO("Unable to bind to preferred port range, falling back to automatic assignment (error: '{}')", + ZEN_INFO("Unable to bind to preferred port range, falling back to automatic assignment (bind returned '{}')", BindErrorCode.message()); EffectivePort = 0; @@ -889,7 +889,7 @@ struct HttpAcceptor { for (uint32_t Retries = 0; (BindErrorCode == asio::error::address_in_use) && (Retries < 3); Retries++) { - ZEN_INFO("Desired port {} is in use (error: '{}'), retrying", EffectivePort, BindErrorCode.message()); + ZEN_INFO("Desired port {} is in use (bind returned '{}'), retrying", EffectivePort, BindErrorCode.message()); Sleep(500); m_Acceptor.bind(asio::ip::tcp::endpoint(BindAddress, EffectivePort), BindErrorCode); } @@ -897,7 +897,7 @@ struct HttpAcceptor if (BindErrorCode) { - ZEN_WARN("Unable to initialize asio service, (error: '{}')", BindErrorCode.message()); + ZEN_WARN("Unable to initialize asio service, (bind returned '{}')", BindErrorCode.message()); return 0; } |