From dc374f9051c727056831853dc0dcba4a98908e78 Mon Sep 17 00:00:00 2001 From: Deathmax Date: Sun, 5 Jun 2011 11:10:14 +0800 Subject: [PATCH] Log no longer outputs to console. (Some things are calling it too fast) --- TShockAPI/Log.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/Log.cs b/TShockAPI/Log.cs index d2d6f354..de1ca59e 100644 --- a/TShockAPI/Log.cs +++ b/TShockAPI/Log.cs @@ -84,7 +84,7 @@ namespace TShockAPI String text = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture) + " - " + caller + message; - Console.WriteLine(text); + //Console.WriteLine(text); if (!MayWriteType(level)) {