// // // // // $Revision$ // using System; namespace ICSharpCode.TextEditor.Util { /// /// Central location for logging calls in the text editor. /// static class LoggingService { public static void Debug(string text) { #if DEBUG Console.WriteLine(text); #endif } } }