diff --git a/ICSharpCode.NRefactory.CSharp/Resolver/Log.cs b/ICSharpCode.NRefactory.CSharp/Resolver/Log.cs index d0cf0a8688..c3d43c2f4d 100644 --- a/ICSharpCode.NRefactory.CSharp/Resolver/Log.cs +++ b/ICSharpCode.NRefactory.CSharp/Resolver/Log.cs @@ -37,19 +37,19 @@ namespace ICSharpCode.NRefactory.CSharp.Resolver { const bool logEnabled = false; -// [Conditional(logEnabled ? "DEBUG" : "LOG_DISABLED")] + [Conditional(logEnabled ? "DEBUG" : "LOG_DISABLED")] internal static void WriteLine(string text) { Debug.WriteLine(text); } -// [Conditional(logEnabled ? "DEBUG" : "LOG_DISABLED")] + [Conditional(logEnabled ? "DEBUG" : "LOG_DISABLED")] internal static void WriteLine(string format, params object[] args) { Debug.WriteLine(format, args); } -// [Conditional(logEnabled ? "DEBUG" : "LOG_DISABLED")] + [Conditional(logEnabled ? "DEBUG" : "LOG_DISABLED")] internal static void WriteCollection(string text, IEnumerable lines) { #if DEBUG @@ -65,13 +65,13 @@ namespace ICSharpCode.NRefactory.CSharp.Resolver #endif } -// [Conditional(logEnabled ? "DEBUG" : "LOG_DISABLED")] + [Conditional(logEnabled ? "DEBUG" : "LOG_DISABLED")] public static void Indent() { Debug.Indent(); } -// [Conditional(logEnabled ? "DEBUG" : "LOG_DISABLED")] + [Conditional(logEnabled ? "DEBUG" : "LOG_DISABLED")] public static void Unindent() { Debug.Unindent();