[deploy] fix '/r' in logger

This commit is contained in:
Nomango 2020-04-01 15:27:38 +08:00
parent d459db8173
commit 659093b45f
1 changed files with 2 additions and 2 deletions

View File

@ -204,7 +204,7 @@ void Logger::Printf(Level level, const char* format, ...)
const auto len = ::_vscprintf(format, args) + 1;
::_vsnprintf_s(temp_buffer, len, len, format, args);
sstream << ' ' << temp_buffer << "\r\n";
sstream << ' ' << temp_buffer << "\n";
va_end(args);
}