Skip to content

Commit

Permalink
Remove unnecessary line break
Browse files Browse the repository at this point in the history
  • Loading branch information
Eisenmonoxid committed Jan 22, 2025
1 parent fba877f commit 44d48fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Helpers/Logger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void Log(string Message)
}
}

string Line = DateTime.Now.ToString() + ": " + Message + "\n";
string Line = DateTime.Now.ToString() + ": " + Message;
try
{
LogWriter.WriteLine(Line);
Expand Down

0 comments on commit 44d48fc

Please sign in to comment.