This commit is contained in:
JenneJ
2016-06-03 13:01:22 +02:00
parent b7f57635e1
commit 0382bf7e6d
2 changed files with 26 additions and 1 deletions

View File

@@ -407,7 +407,7 @@
Public Function Done() As Long
stopwatch.Stop()
Dim message = String.Format("{0} took {1} milliseconds to complete", label, stopwatch.ElapsedMilliseconds)
Dim message = String.Format("{0, 5}ms || {1}", stopwatch.ElapsedMilliseconds, label)
Console.WriteLine(message)
If LogErrorsOnly = False Then ClassLogger.Add(message, False)
Return stopwatch.ElapsedMilliseconds