From 2ce995ef31adeca17a6c360aac1281e686675f46 Mon Sep 17 00:00:00 2001 From: Alexander Bushnev Date: Thu, 8 Feb 2024 13:26:38 +0100 Subject: [PATCH] Remove debug logging --- io/zenoh-links/zenoh-link-quic/src/unicast.rs | 2 +- io/zenoh-links/zenoh-link-serial/src/unicast.rs | 2 +- io/zenoh-links/zenoh-link-tls/src/unicast.rs | 2 +- io/zenoh-links/zenoh-link-unixpipe/src/unix/unicast.rs | 2 +- io/zenoh-links/zenoh-link-unixsock_stream/src/unicast.rs | 2 +- io/zenoh-links/zenoh-link-ws/src/unicast.rs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/io/zenoh-links/zenoh-link-quic/src/unicast.rs b/io/zenoh-links/zenoh-link-quic/src/unicast.rs index dfc70dca28..f2cf7478cc 100644 --- a/io/zenoh-links/zenoh-link-quic/src/unicast.rs +++ b/io/zenoh-links/zenoh-link-quic/src/unicast.rs @@ -146,7 +146,7 @@ impl LinkUnicastTrait for LinkUnicastQuic { #[inline(always)] fn get_interface_names(&self) -> Vec { // @TODO: Not supported for now - log::debug!("The get_interface_names for LinkUnicastQuic is not supported"); + //log::debug!("The get_interface_names for LinkUnicastQuic is not supported"); vec![] } diff --git a/io/zenoh-links/zenoh-link-serial/src/unicast.rs b/io/zenoh-links/zenoh-link-serial/src/unicast.rs index 51d734f91b..fe9b1c4e60 100644 --- a/io/zenoh-links/zenoh-link-serial/src/unicast.rs +++ b/io/zenoh-links/zenoh-link-serial/src/unicast.rs @@ -184,7 +184,7 @@ impl LinkUnicastTrait for LinkUnicastSerial { #[inline(always)] fn get_interface_names(&self) -> Vec { // @TODO: Not supported for now - log::debug!("The get_interface_names for LinkUnicastSerial is not supported"); + //log::debug!("The get_interface_names for LinkUnicastSerial is not supported"); vec![] } diff --git a/io/zenoh-links/zenoh-link-tls/src/unicast.rs b/io/zenoh-links/zenoh-link-tls/src/unicast.rs index 383b03a366..b224e9e848 100644 --- a/io/zenoh-links/zenoh-link-tls/src/unicast.rs +++ b/io/zenoh-links/zenoh-link-tls/src/unicast.rs @@ -198,7 +198,7 @@ impl LinkUnicastTrait for LinkUnicastTls { #[inline(always)] fn get_interface_names(&self) -> Vec { // @TODO: Not supported for now - log::debug!("The get_interface_names for LinkUnicastTls is not supported"); + //log::debug!("The get_interface_names for LinkUnicastTls is not supported"); vec![] } diff --git a/io/zenoh-links/zenoh-link-unixpipe/src/unix/unicast.rs b/io/zenoh-links/zenoh-link-unixpipe/src/unix/unicast.rs index 83f6414dee..cd9f316fda 100644 --- a/io/zenoh-links/zenoh-link-unixpipe/src/unix/unicast.rs +++ b/io/zenoh-links/zenoh-link-unixpipe/src/unix/unicast.rs @@ -495,7 +495,7 @@ impl LinkUnicastTrait for UnicastPipe { #[inline(always)] fn get_interface_names(&self) -> Vec { // @TODO: Not supported for now - log::debug!("The get_interface_names for UnicastPipe is not supported"); + //log::debug!("The get_interface_names for UnicastPipe is not supported"); vec![] } diff --git a/io/zenoh-links/zenoh-link-unixsock_stream/src/unicast.rs b/io/zenoh-links/zenoh-link-unixsock_stream/src/unicast.rs index 3ac1bcbfe6..2c7e047298 100644 --- a/io/zenoh-links/zenoh-link-unixsock_stream/src/unicast.rs +++ b/io/zenoh-links/zenoh-link-unixsock_stream/src/unicast.rs @@ -118,7 +118,7 @@ impl LinkUnicastTrait for LinkUnicastUnixSocketStream { #[inline(always)] fn get_interface_names(&self) -> Vec { // @TODO: Not supported for now - log::debug!("The get_interface_names for LinkUnicastUnixSocketStream is not supported"); + //log::debug!("The get_interface_names for LinkUnicastUnixSocketStream is not supported"); vec![] } diff --git a/io/zenoh-links/zenoh-link-ws/src/unicast.rs b/io/zenoh-links/zenoh-link-ws/src/unicast.rs index 4276e2bfaf..a257542867 100644 --- a/io/zenoh-links/zenoh-link-ws/src/unicast.rs +++ b/io/zenoh-links/zenoh-link-ws/src/unicast.rs @@ -210,7 +210,7 @@ impl LinkUnicastTrait for LinkUnicastWs { #[inline(always)] fn get_interface_names(&self) -> Vec { // @TODO: Not supported for now - log::debug!("The get_interface_names for LinkUnicastWs is not supported"); + //log::debug!("The get_interface_names for LinkUnicastWs is not supported"); vec![] }