From 380eaac3ef24e679393f48a693e00a041274c5f4 Mon Sep 17 00:00:00 2001 From: Stephen D <webmaster@scd31.com> Date: Thu, 18 Jan 2024 07:57:57 -0400 Subject: [PATCH] remove some debugging lines --- src/handlers/llama.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/handlers/llama.rs b/src/handlers/llama.rs index f1983f7..4efb8b7 100644 --- a/src/handlers/llama.rs +++ b/src/handlers/llama.rs @@ -80,7 +80,6 @@ impl LlamaHandler { txt: &str, context: Option<GenerationContext>, ) { - println!("Replying to {}", txt); if txt.is_empty() { return; } @@ -148,8 +147,6 @@ impl LineHandler for LlamaHandler { let txt = &msg.content; - dbg!(&msg); - if let Some(p) = &msg.referenced_message { let x = { let l = self.contexts.lock().await; -- GitLab