# | 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 | { |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |