server: logs: do not truncate log values
This commit is contained in:
parent
616d7e9a9b
commit
2495f7273a
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ static inline void server_log(const char *level, const char *function, int line,
|
|||
for (const auto& el : log.items())
|
||||
{
|
||||
const std::string value = el.value().dump(-1, ' ', false, json::error_handler_t::replace);
|
||||
ss << el.key() << "=" << value;
|
||||
ss << " " << el.key() << "=" << value;
|
||||
}
|
||||
|
||||
const std::string str = ss.str();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue