Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
orontee committed Oct 4, 2023
1 parent 547108e commit cb7f44f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/logging.cc
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ void taranis::initialize_logging(bool verbose_log) {
<< ": <" << logging::trivial::severity << "> "
<< logging::expressions::smessage);

auto sink = logging::add_file_log(logging::keywords::file_name = log_path,
logging::keywords::rotation_size = 1024 * 1024,
logging::keywords::format = format);

auto sink =
logging::add_file_log(logging::keywords::file_name = log_path,
logging::keywords::rotation_size = 1024 * 1024,
logging::keywords::format = format);

auto core = logging::core::get();
core->add_sink(sink);
Expand Down

0 comments on commit cb7f44f

Please sign in to comment.