From 898bdbb6cdcbcfeee2059bb1f4931f0d95373589 Mon Sep 17 00:00:00 2001 From: Cooper Quintin Date: Wed, 20 Aug 2025 16:19:04 -0700 Subject: [PATCH] include event severity in message --- daemon/src/diag.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/src/diag.rs b/daemon/src/diag.rs index 7f45367..636612f 100644 --- a/daemon/src/diag.rs +++ b/daemon/src/diag.rs @@ -208,7 +208,7 @@ impl DiagTask { self.notification_channel .send(Notification::new( "heuristic-warning".to_string(), - "Rayhunter has emitted a warning!".to_string(), + format!("Rayhunter has detected a {:?} severity event", max_type), Some(Duration::from_secs(60 * 5)), )) .await