Skip to content

Commit

Permalink
Minor logging logic fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerVigario committed Jul 18, 2017
1 parent 7aca619 commit a804231
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Download Free MS eBooks/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ private void LogLostFile(string report)
{
if (!logYet)
{
LogLostFile(" ======== Download Free MS eBooks v1.1 ========");
LogLostFile(" == " + DateTime.Now.ToString());
File.AppendAllText(Application.StartupPath + "\\errors.log", " ======== Download Free MS eBooks v1.1 ========" + Environment.NewLine);
File.AppendAllText(Application.StartupPath + "\\errors.log", " == " + DateTime.Now.ToString() + Environment.NewLine);
logYet = true;
}
//
Expand Down

0 comments on commit a804231

Please sign in to comment.