# | Line 23 | Line 23 | namespace RomCheater.Logging | |
---|---|---|
23 | public static void Write(string format, params object[] args) | |
24 | { | |
25 | init(); | |
26 | < | lh.Write(format, args); |
26 | > | string new_format = " " + format; |
27 | > | lh.Write(new_format, args); |
28 | } | |
29 | public static void WriteLine(string format, params object[] args) | |
30 | { | |
31 | init(); | |
32 | < | lh.WriteLine(format, args); |
32 | > | string new_format = " " + format; |
33 | > | lh.WriteLine(new_format, args); |
34 | } | |
35 | #endregion | |
36 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |