Update deps, log, error return

This commit is contained in:
Dominik Werder
2025-06-03 12:29:07 +02:00
parent 1ddf18276f
commit 9d20359126
16 changed files with 203 additions and 140 deletions

View File

@@ -92,7 +92,7 @@ const POLL_READ_TIMEOUT: Duration = Duration::from_millis(1000 * 10);
const DO_RATE_CHECK: bool = false;
const CHANNEL_STATUS_PONG_QUIET: Duration = Duration::from_millis(1000 * 60 * 60);
const METRICS_EMIT_IVL: Duration = Duration::from_millis(1000 * 1);
const USE_BIN_WRITER: bool = true;
const USE_BIN_WRITER: bool = false;
macro_rules! trace3 { ($($arg:expr),*) => ( if false { trace!($($arg),*); } ); }