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 23 by william, Wed May 9 08:51:38 2012 UTC vs.
Revision 24 by william, Wed May 9 08:59:52 2012 UTC

# 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  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines