[runtime] Updates comments.
[mono.git] / mcs / class / corlib / ReferenceSources / BCLDebug.cs
1 using System.Diagnostics;
2
3 namespace System
4 {
5     internal enum LogLevel {
6         Trace  = 0,
7         Status = 20,
8         Warning= 40,
9         Error  = 50,
10         Panic  = 100,
11     }
12
13         static class BCLDebug
14         {
15                 [Conditional("_DEBUG")]
16                 static public void Assert(bool condition, string message)
17                 {
18                 }
19
20                 [Conditional("_DEBUG")]
21                 internal static void Correctness(bool expr, string msg)
22                 {
23                 }
24
25                 [Conditional("_DEBUG")]
26                 static public void Log (string message)
27                 {
28                 }
29
30                 [Conditional("_DEBUG")]
31                 static public void Log (string switchName, string message)
32                 {
33                 }
34
35                 [Conditional("_DEBUG")]
36                 public static void Log (string switchName, LogLevel level, params object[] messages)
37                 {
38                 }
39
40                 [Conditional("_DEBUG")]
41                 internal static void Perf (bool expr, string msg)
42                 {
43                 }
44
45                 [Conditional("_LOGGING")]
46                 public static void Trace (string switchName, params object[]messages)
47                 {
48                 }
49         }
50 }