Restore space after log timestamps

This commit is contained in:
Charles Dang 2024-11-28 22:14:06 -05:00
parent 4ccfca6b1d
commit 653333a8bf

View file

@ -498,6 +498,7 @@ void log_in_progress::operator|(formatter&& message)
auto fractional = std::chrono::duration_cast<std::chrono::microseconds>(now - as_seconds);
stream_ << "." << std::setw(6) << fractional.count();
}
stream_ << " ";
}
stream_ << prefix_ << sanitize_log(message.str());
if(auto_newline_) {