From 90474920cd257b972ed7b9599e61af394cee0f5c Mon Sep 17 00:00:00 2001 From: ricky Date: Fri, 17 Jun 2011 22:30:46 +1000 Subject: [PATCH] Fuck maybe I should not try to make multiple changes at the same time --- TShockAPI/TShock.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TShockAPI/TShock.cs b/TShockAPI/TShock.cs index 059f3407..850c6121 100755 --- a/TShockAPI/TShock.cs +++ b/TShockAPI/TShock.cs @@ -73,9 +73,9 @@ namespace TShockAPI string version = string.Format("TShock Version {0} ({1}) now running.", Version, VersionCodename); Console.WriteLine(version); #if DEBUG - Log.Initialize(LogPath, LogLevel.All, false); + Log.Initialize(Path.Combine(SavePath, "log.txt"), LogLevel.All, false); #else - Log.Initialize(LogPath, LogLevel.Info, false); + Log.Initialize(Path.Combine(SavePath, "log.txt"), LogLevel.Info, false); #endif Log.Info(version); Log.Info("Starting...");