From be168646781179490e0d0c8d9834f6f6f2b0c945 Mon Sep 17 00:00:00 2001 From: "flamingo[bot]" <277372822+flamingo[bot]@users.noreply.github.com> Date: Mon, 7 Sep 2026 05:04:53 +0000 Subject: [PATCH] fix(OPENFRAM-004-13): emit_to failure log in notification_actions.rs missing bracketed module prefix --- src-tauri/src/notification_actions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/src/notification_actions.rs b/src-tauri/src/notification_actions.rs index c3c45a1..50e456f 100644 --- a/src-tauri/src/notification_actions.rs +++ b/src-tauri/src/notification_actions.rs @@ -254,7 +254,7 @@ fn announce_dialog_change(app: &AppHandle, context: &ActionContext) { DIALOG_CHANGED_EVENT, serde_json::json!({ "dialogId": dialog_id }), ) { - log::warn!("emit {DIALOG_CHANGED_EVENT}: {e}"); + log::warn!("[notifications] emit {DIALOG_CHANGED_EVENT}: {e}"); } }