Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeschmitt-tr committed Aug 12, 2024
1 parent 2e05419 commit f2fa868
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/xs_logging.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ void log(logging::Level level, const char * fmt, ...)
auto duration = std::chrono::system_clock::now().time_since_epoch();
double seconds = std::chrono::duration<double>(duration).count();

msg = msg
+ " ["
+ std::to_string(seconds)
+ "] ";
msg = msg +
" [" +
std::to_string(seconds) +
"] ";

va_list args;
va_start(args, fmt);
Expand Down

0 comments on commit f2fa868

Please sign in to comment.