From ecd122786f815eed0d72bdf61eb27d58cef9f7d9 Mon Sep 17 00:00:00 2001
From: Storm Dragon <stormdragon2976@gmail.com>
Date: Sun, 20 Apr 2025 02:58:12 -0400
Subject: [PATCH] Fixed an error with logging, for real this time.

---
 src/cthulhu/cthulhu.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cthulhu/cthulhu.py b/src/cthulhu/cthulhu.py
index 4f99ad5..c963877 100644
--- a/src/cthulhu/cthulhu.py
+++ b/src/cthulhu/cthulhu.py
@@ -114,7 +114,7 @@ class APIHelper:
                 if grab_ids:
                     binding._grab_ids = grab_ids
 
-            _logger.info(f"Created binding: {binding.keysymstring} with modifiers {binding.modifiers}")
+            debug.printMessage(debug.LEVEL_INFO, f"Created binding: {binding.keysymstring} with modifiers {binding.modifiers}", True)
             return binding
 
         return None