first commit
This commit is contained in:
24
ICSharpCode.TextEditor/Project/Src/Util/LoggingService.cs
Normal file
24
ICSharpCode.TextEditor/Project/Src/Util/LoggingService.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
// <file>
|
||||
// <copyright see="prj:///doc/copyright.txt"/>
|
||||
// <license see="prj:///doc/license.txt"/>
|
||||
// <author name="Daniel Grunwald"/>
|
||||
// <version>$Revision$</version>
|
||||
// </file>
|
||||
|
||||
using System;
|
||||
|
||||
namespace ICSharpCode.TextEditor.Util
|
||||
{
|
||||
/// <summary>
|
||||
/// Central location for logging calls in the text editor.
|
||||
/// </summary>
|
||||
static class LoggingService
|
||||
{
|
||||
public static void Debug(string text)
|
||||
{
|
||||
#if DEBUG
|
||||
Console.WriteLine(text);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user