ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.Logging/logger.cs
(Generate patch)

Comparing trunk/RomCheater.Logging/logger.cs (file contents):
Revision 96 by william, Wed May 9 22:42:57 2012 UTC vs.
Revision 97 by william, Wed May 9 22:48:59 2012 UTC

# Line 16 | Line 16 | namespace RomCheater.Logging
16  
17      #region MesageLogger
18      [Flags]
19 <    public enum loggerflags
19 >    public enum loggerflags :ushort
20      {
21          NONE = 0x0000,              // 000
22          INFO = 0x0001,              // 001
# Line 30 | Line 30 | namespace RomCheater.Logging
30          private static loggerflags logging_flags;
31          static logger() { SetLoggingFlags(loggerflags.DEFAULT); }
32          public static void SetLoggingFlags(loggerflags flags) { logging_flags = flags; }
33 +        public static loggerflags GetLoggingFlags() { return logging_flags; }
34          #region sub-classes
35          private static string CreateTimeStamp()
36          {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines