Update core modules and add GUI panels

This commit is contained in:
2026-06-08 17:32:42 +08:00
parent 2d33b4b2ae
commit 2eb02350da
23 changed files with 822 additions and 161 deletions

View File

@@ -1,4 +1,5 @@
use super::Framer;
use tracing::debug;
/// Line-delimited framer.
///
@@ -54,6 +55,13 @@ impl Framer for LineFramer {
}
}
if !frames.is_empty() {
debug!(
count = frames.len(),
pending = self.buf.len(),
"line frames extracted"
);
}
frames
}