Skip to content
This repository has been archived by the owner on May 22, 2022. It is now read-only.

Commit

Permalink
log format fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew committed Aug 1, 2019
1 parent d098491 commit 6aa0ba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rofl.Logger/Scribe.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void WriteToFile()

foreach (LogEntry entry in _entryList)
{
logOutput += $"{entry.Timestamp}\t|\t{entry.ClassName} -> {entry.MethodName}\t|\t{entry.Level}\t|\t{entry.Message}\n";
logOutput += $"{entry.Timestamp} | {entry.ClassName} -> {entry.MethodName} | {entry.Level} | {entry.Message}\n";
}

File.WriteAllText(outputFileName, logOutput);
Expand Down

0 comments on commit 6aa0ba9

Please sign in to comment.