From 7ba7ff4b2a103bb2556ffbe6ab56b6498a0e0f17 Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Mon, 15 Jun 2020 16:08:58 -0700 Subject: [PATCH] (cobra bots) minor aesthetic change, in how we display http headers with a : then space as key value separator instead of :: with no space --- docs/CHANGELOG.md | 4 ++++ ixbots/ixbots/IXCobraBot.cpp | 2 +- ixwebsocket/IXWebSocketVersion.h | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c619b1d5..5ed09c3e 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog 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 (cobra metrics to statsd bot) change from a statsd type of gauge to a timing one diff --git a/ixbots/ixbots/IXCobraBot.cpp b/ixbots/ixbots/IXCobraBot.cpp index c0274a4b..0bd15a25 100644 --- a/ixbots/ixbots/IXCobraBot.cpp +++ b/ixbots/ixbots/IXCobraBot.cpp @@ -156,7 +156,7 @@ namespace ix for (auto&& it : event->headers) { - CoreLogger::info(it.first + "::" + it.second); + CoreLogger::info(it.first + ": " + it.second); } } else if (event->type == ix::CobraEventType::Closed) diff --git a/ixwebsocket/IXWebSocketVersion.h b/ixwebsocket/IXWebSocketVersion.h index afe33a42..6b879a5b 100644 --- a/ixwebsocket/IXWebSocketVersion.h +++ b/ixwebsocket/IXWebSocketVersion.h @@ -6,4 +6,4 @@ #pragma once -#define IX_WEBSOCKET_VERSION "9.7.4" +#define IX_WEBSOCKET_VERSION "9.7.5"