(cobra bots) minor aesthetic change, in how we display http headers with a : then space as key value separator instead of :: with

no space
This commit is contained in:
Benjamin Sergeant 2020-06-15 16:08:58 -07:00
parent c9854be1c4
commit 7ba7ff4b2a
3 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,10 @@
# Changelog # Changelog
All changes to this project will be documented in this file. All changes to this project will be documented in this file.
## [9.7.5] - 2020-06-15
(cobra bots) minor aesthetic change, in how we display http headers with a : then space as key value separator instead of :: with no space
## [9.7.4] - 2020-06-11 ## [9.7.4] - 2020-06-11
(cobra metrics to statsd bot) change from a statsd type of gauge to a timing one (cobra metrics to statsd bot) change from a statsd type of gauge to a timing one

View File

@ -156,7 +156,7 @@ namespace ix
for (auto&& it : event->headers) for (auto&& it : event->headers)
{ {
CoreLogger::info(it.first + "::" + it.second); CoreLogger::info(it.first + ": " + it.second);
} }
} }
else if (event->type == ix::CobraEventType::Closed) else if (event->type == ix::CobraEventType::Closed)

View File

@ -6,4 +6,4 @@
#pragma once #pragma once
#define IX_WEBSOCKET_VERSION "9.7.4" #define IX_WEBSOCKET_VERSION "9.7.5"