summaryrefslogtreecommitdiff
path: root/StardewInjector/StardewHooker.cs
diff options
context:
space:
mode:
authorJames Finlay <jtfinlay@ualberta.ca>2016-03-04 22:32:04 -0800
committerJames Finlay <jtfinlay@ualberta.ca>2016-03-04 22:55:47 -0800
commita5a32e148b44b406d131b11a0aeadebed6d496cb (patch)
treeae8134fd5aedac7f9e5da992f3b691e4079d62aa /StardewInjector/StardewHooker.cs
parent9420dfb0719d7f00c36607a210c50dc4537a9626 (diff)
downloadSMAPI-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 'StardewInjector/StardewHooker.cs')
-rw-r--r--StardewInjector/StardewHooker.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/StardewInjector/StardewHooker.cs b/StardewInjector/StardewHooker.cs
index a92b96c1..dbf1c5ef 100644
--- a/StardewInjector/StardewHooker.cs
+++ b/StardewInjector/StardewHooker.cs
@@ -29,7 +29,7 @@ namespace StardewInjector
}
catch (Exception ex)
{
- Program.LogError(ex);
+ Log.Error(ex);
return false;
}
}
@@ -57,7 +57,7 @@ namespace StardewInjector
}
catch (Exception ex)
{
- Program.LogError(ex);
+ Log.Error(ex);
return false;
}
}
@@ -97,7 +97,7 @@ namespace StardewInjector
}
catch (Exception ex)
{
- Program.LogError(ex);
+ Log.Error(ex);
}
}