Skip to content

Commit

Permalink
[Service] Downgraded Loglevel Service Info -> Debug
Browse files Browse the repository at this point in the history
With this, we don't lose the info logs, but they are not shown by default anymore.
  • Loading branch information
FlorianReimold authored Apr 29, 2024
1 parent 82e7875 commit 3a145e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecal/core/src/service/ecal_service_singleton_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ namespace eCAL
eCAL::Logging::Log(eCAL_Logging_eLogLevel::log_level_debug1, "[" + node_name + "] " + message);
break;
case LogLevel::Info:
eCAL::Logging::Log(eCAL_Logging_eLogLevel::log_level_info, "[" + node_name + "] " + message);
eCAL::Logging::Log(eCAL_Logging_eLogLevel::log_level_debug1, "[" + node_name + "] " + message);
break;
case LogLevel::Warning:
eCAL::Logging::Log(eCAL_Logging_eLogLevel::log_level_warning, "[" + node_name + "] " + message);
Expand Down

0 comments on commit 3a145e8

Please sign in to comment.