From cf89e2b55bc731d7a1904927a8b131d3d37309e6 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Thu, 10 Oct 2013 16:04:55 +0200 Subject: [PATCH] logger: Mention that we wrote a report after a crash --- SparkleLib/SparkleLogger.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SparkleLib/SparkleLogger.cs b/SparkleLib/SparkleLogger.cs index 0d4d8a1e..2f518db2 100755 --- a/SparkleLib/SparkleLogger.cs +++ b/SparkleLib/SparkleLogger.cs @@ -99,6 +99,8 @@ namespace SparkleLib { } File.WriteAllText (crash_report_file_path, crash_report); + Console.WriteLine (DateTime.Now.ToString ("HH:mm:ss") + " | Wrote crash report to " + crash_report_file_path); } } } +