Code Coverage Statistics for Source File
c:\Tools\SD3\src\Libraries\ICSharpCode.TextEditor\Project\Src\Util\LoggingService.cs
|
Sequence Point Coverage
N/A
0 of 0
|
Branch Coverage
N/A
0 of 0
|
Lines
24
|
Highlight:
Uncovered Code
Covered Code
| L | V | Source |
|---|---|---|
1 |
// <file> |
|
2 |
// <copyright see="prj:///doc/copyright.txt"/> |
|
3 |
// <license see="prj:///doc/license.txt"/> |
|
4 |
// <author name="Daniel Grunwald"/> |
|
5 |
// <version>$Revision: 2719 $</version> |
|
6 |
// </file> |
|
7 |
||
8 |
using System; |
|
9 |
||
10 |
namespace ICSharpCode.TextEditor.Util |
|
11 |
{ |
|
12 |
/// <summary> |
|
13 |
/// Central location for logging calls in the text editor. |
|
14 |
/// </summary> |
|
15 |
static class LoggingService |
|
16 |
{ |
|
17 |
public static void Debug(string text) |
|
18 |
{ |
|
19 |
#if DEBUG |
|
20 |
Console.WriteLine(text); |
|
21 |
#endif |
|
22 |
} |
|
23 |
} |
|
24 |
} |