diff options
author | James Finlay <jtfinlay@ualberta.ca> | 2016-03-04 22:32:04 -0800 |
---|---|---|
committer | James Finlay <jtfinlay@ualberta.ca> | 2016-03-04 22:55:47 -0800 |
commit | a5a32e148b44b406d131b11a0aeadebed6d496cb (patch) | |
tree | ae8134fd5aedac7f9e5da992f3b691e4079d62aa /StardewModdingAPI/Inheritance/Menus | |
parent | 9420dfb0719d7f00c36607a210c50dc4537a9626 (diff) | |
download | SMAPI-a5a32e148b44b406d131b11a0aeadebed6d496cb.tar.gz SMAPI-a5a32e148b44b406d131b11a0aeadebed6d496cb.tar.bz2 SMAPI-a5a32e148b44b406d131b11a0aeadebed6d496cb.zip |
Pulled Logs into new Log object
- Greatly simplifies Program.cs
- Removed the 'Colour' method so that logging is more consistent for users - willing to discuss this change. I believe it is beneficial.
- Added uses of #DEBUG
Diffstat (limited to 'StardewModdingAPI/Inheritance/Menus')
-rw-r--r-- | StardewModdingAPI/Inheritance/Menus/SGameMenu.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/StardewModdingAPI/Inheritance/Menus/SGameMenu.cs b/StardewModdingAPI/Inheritance/Menus/SGameMenu.cs index 8b883fb6..721e04d8 100644 --- a/StardewModdingAPI/Inheritance/Menus/SGameMenu.cs +++ b/StardewModdingAPI/Inheritance/Menus/SGameMenu.cs @@ -39,7 +39,7 @@ namespace StardewModdingAPI.Inheritance.Menus { if (pages[currentTab] is InventoryPage) { - Program.LogInfo("INV SCREEN"); + Log.Verbose("INV SCREEN"); } else { |