diff --git a/LibCarla/source/carla/client/ServerSideSensor.cpp b/LibCarla/source/carla/client/ServerSideSensor.cpp index 88ade398d..5671fd0db 100644 --- a/LibCarla/source/carla/client/ServerSideSensor.cpp +++ b/LibCarla/source/carla/client/ServerSideSensor.cpp @@ -31,14 +31,14 @@ namespace client { } void ServerSideSensor::Listen(CallbackFunctionType callback) { - log_warning("calling sensor Listen() ", GetDisplayId()); + log_debug("calling sensor Listen() ", GetDisplayId()); log_debug(GetDisplayId(), ": subscribing to stream"); GetEpisode().Lock()->SubscribeToSensor(*this, std::move(callback)); _is_listening = true; } void ServerSideSensor::Stop() { - log_warning("calling sensor Stop() ", GetDisplayId()); + log_debug("calling sensor Stop() ", GetDisplayId()); if (!_is_listening) { log_warning( "attempting to unsubscribe from stream but sensor wasn't listening:", @@ -50,7 +50,7 @@ namespace client { } bool ServerSideSensor::Destroy() { - log_warning("calling sensor Destroy() ", GetDisplayId()); + log_debug("calling sensor Destroy() ", GetDisplayId()); if (IsListening()) { Stop(); }