(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:
@ -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)
|
||||
|
Reference in New Issue
Block a user