Browse Source

Merge pull request #1442 from lioncash/format

text_formatter: Avoid unnecessary string temporary creation in PrintMessage()
pull/15/merge
bunnei 7 years ago
committed by GitHub
parent
commit
fe292573de
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/common/logging/text_formatter.cpp

2
src/common/logging/text_formatter.cpp

@ -31,7 +31,7 @@ std::string FormatLogMessage(const Entry& entry) {
} }
void PrintMessage(const Entry& entry) { void PrintMessage(const Entry& entry) {
auto str = FormatLogMessage(entry) + '\n';
const auto str = FormatLogMessage(entry).append(1, '\n');
fputs(str.c_str(), stderr); fputs(str.c_str(), stderr);
} }

Loading…
Cancel
Save