From e4d6cc138129153d654f43aabed16d2ba482beee Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 6 Nov 2016 10:36:44 -0500 Subject: simplify log a bit more --- src/StardewModdingAPI/Inheritance/SGame.cs | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/StardewModdingAPI/Inheritance/SGame.cs') diff --git a/src/StardewModdingAPI/Inheritance/SGame.cs b/src/StardewModdingAPI/Inheritance/SGame.cs index 5ffb388e..3c79c779 100644 --- a/src/StardewModdingAPI/Inheritance/SGame.cs +++ b/src/StardewModdingAPI/Inheritance/SGame.cs @@ -287,7 +287,6 @@ namespace StardewModdingAPI.Inheritance /// The method called during game launch after configuring XNA or MonoGame. The game window hasn't been opened by this point. protected override void Initialize() { - Log.AsyncY("XNA Initialize"); //ModItems = new Dictionary(); SGame.DebugMessageQueue = new Queue(); this.PreviouslyPressedButtons = new Buttons[4][]; @@ -301,7 +300,6 @@ namespace StardewModdingAPI.Inheritance /// The method called before XNA or MonoGame loads or reloads graphics resources. protected override void LoadContent() { - Log.AsyncY("XNA LoadContent"); base.LoadContent(); GameEvents.InvokeLoadContent(); } -- cgit