From 680cc8adfae1d73b44434cd3b91570fa68947770 Mon Sep 17 00:00:00 2001 From: Nico Jeske Date: Wed, 27 Mar 2019 17:07:17 +0100 Subject: [PATCH] Minor logging fix --- Ambilight/GUI/TraySettings.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Ambilight/GUI/TraySettings.cs b/Ambilight/GUI/TraySettings.cs index 9d35007..724d63b 100644 --- a/Ambilight/GUI/TraySettings.cs +++ b/Ambilight/GUI/TraySettings.cs @@ -151,10 +151,10 @@ private void InitializeTray() Visible = true }; - logger.Info("Keyboard Enabled: " + _keyboardEnabled); - logger.Info("Mouse Enabled: " + _mouseEnabled); - logger.Info("Mousemat Enabled: " + _mousematEnabled); - logger.Info("Ambilight mode: " + _ambiModeEnabled); + logger.Info("Keyboard Enabled: " + _keyboardEnabled.Checked); + logger.Info("Mouse Enabled: " + _mouseEnabled.Checked); + logger.Info("Mousemat Enabled: " + _mousematEnabled.Checked); + logger.Info("Ambilight mode: " + _ambiModeEnabled.Checked); notifyIcon.ContextMenu = contextMenu; Application.Run();