Use logger instead of raw logging
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Bea 2024-08-05 19:25:21 +02:00
parent 7567552c1a
commit d55817f463

@ -23,7 +23,7 @@ public class KeyPressListener implements NativeKeyListener
try {
GlobalScreen.unregisterNativeHook();
} catch (NativeHookException nativeHookException) {
nativeHookException.printStackTrace();
LOGGER.error("Failed to unregister native hook", nativeHookException);
}
}