Skip to content

Commit

Permalink
Merge pull request #2120 from tewinget/fix_syslog_target_arg
Browse files Browse the repository at this point in the history
Fix incorrect usage of oxen-logging syslog
  • Loading branch information
majestrate authored Jan 18, 2023
2 parents ae9fd9a + fbfd70a commit 245f968
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion external/oxen-logging
2 changes: 1 addition & 1 deletion llarp/router/router.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ namespace llarp
if (log::get_level_default() != log::Level::off)
log::reset_level(conf.logging.m_logLevel);
log::clear_sinks();
log::add_sink(log_type, conf.logging.m_logFile);
log::add_sink(log_type, log_type == log::Type::System ? "lokinet" : conf.logging.m_logFile);

enableRPCServer = conf.api.m_enableRPCServer;

Expand Down

0 comments on commit 245f968

Please sign in to comment.