Skip to content

Commit

Permalink
Add "command map" to log file names.
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Olson committed Aug 15, 2013
1 parent a4f6cf5 commit 2f9418a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Pinta.Core/Logger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ public static class Logger
public static void Initialize()
{
Directory.CreateDirectory(log_dir);
log_file = Path.Combine(log_dir, DateTime.Now.ToString("yyyy.MM.dd hh.mm.ss") + ".txt");
log_file = Path.Combine(log_dir, "Command Map - " + DateTime.Now.ToString("yyyy.MM.dd HH.mm.ss") + ".txt");

stopwatch = new Stopwatch();
Log("New Pinta session started");
Log("New command map Pinta session started");
stopwatch.Start();
}

Expand Down

0 comments on commit 2f9418a

Please sign in to comment.