Skip to content

Commit

Permalink
Add missing \n character at end of error log string (#1700)
Browse files Browse the repository at this point in the history
Closes #1699

Signed-off-by: Anjan Roy <hello@itzmeanjan.in>
  • Loading branch information
itzmeanjan committed Nov 13, 2023
1 parent 159eb2d commit 93a96a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/perf_counters.cc
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ bool PerfCounters::IsCounterSupported(const std::string&) { return false; }
PerfCounters PerfCounters::Create(
const std::vector<std::string>& counter_names) {
if (!counter_names.empty()) {
GetErrorLogInstance() << "Performance counters not supported.";
GetErrorLogInstance() << "Performance counters not supported.\n";
}
return NoCounters();
}
Expand Down

0 comments on commit 93a96a2

Please sign in to comment.