Skip to content

Commit

Permalink
Minor logging fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nicojeske committed Mar 27, 2019
1 parent fa6884c commit 680cc8a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Ambilight/GUI/TraySettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 680cc8a

Please sign in to comment.