From a89f817b9e812904286dfd3ba93bfd44136f26be Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Sat, 11 May 2024 15:59:57 -0500 Subject: [PATCH] adjust log message --- src/Surface.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Surface.zig b/src/Surface.zig index 04e36df6d..8ab678744 100644 --- a/src/Surface.zig +++ b/src/Surface.zig @@ -3513,7 +3513,7 @@ fn showDesktopNotification(self: *Surface, title: [:0]const u8, body: [:0]const if (last_notification_time) |last| { if (std.mem.eql(u8, &last_notification_digest, &new_notification_digest)) { if (now.since(last) < 5 * std.time.ns_per_s) { - log.warn("suppressing identical notification", .{}); + log.warn("suppressing identical desktop notification", .{}); return; } }