From 4859a44cb2cc8680ed29f6be90838dd8ea6b4576 Mon Sep 17 00:00:00 2001 From: Florian Reimold <11774314+FlorianReimold@users.noreply.github.com> Date: Fri, 6 May 2022 13:43:00 +0200 Subject: [PATCH] Core: Suppressed warning in case of upgraded internal protobuf scheme (changed to debug level) (#654) Co-authored-by: rex-schilasky <49162693+rex-schilasky@users.noreply.github.com> --- ecal/core/src/ecal_reggate.cpp | 2 +- ecal/core/src/mon/ecal_monitoring_impl.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ecal/core/src/ecal_reggate.cpp b/ecal/core/src/ecal_reggate.cpp index 047834ea06..e9881988dc 100644 --- a/ecal/core/src/ecal_reggate.cpp +++ b/ecal/core/src/ecal_reggate.cpp @@ -202,7 +202,7 @@ namespace eCAL break; default: { - eCAL::Logging::Log(log_level_warning, "CRegGate::ApplySample : unknown sample type"); + eCAL::Logging::Log(log_level_debug1, "CRegGate::ApplySample : unknown sample type"); } break; } diff --git a/ecal/core/src/mon/ecal_monitoring_impl.cpp b/ecal/core/src/mon/ecal_monitoring_impl.cpp index ae2e729e34..b3829b985f 100644 --- a/ecal/core/src/mon/ecal_monitoring_impl.cpp +++ b/ecal/core/src/mon/ecal_monitoring_impl.cpp @@ -200,7 +200,7 @@ namespace eCAL break; default: { - eCAL::Logging::Log(log_level_warning, "CMonitoringImpl::ApplySample : unknown sample type"); + eCAL::Logging::Log(log_level_debug1, "CMonitoringImpl::ApplySample : unknown sample type"); } break; }