Skip to content

Commit ba6ddac

Browse files
committed
Log at info level in ParsingStageTimer
1 parent 81d36b7 commit ba6ddac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Rubberduck.Parsing/Common/ParsingStageTimer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public static ParsingStageTimer StartNew()
2222

2323
public void Log(string message)
2424
{
25-
Logger.Debug(message, _stopwatch.ElapsedMilliseconds);
25+
Logger.Info(message, _stopwatch.ElapsedMilliseconds);
2626
}
2727
}
2828
}

Rubberduck.Parsing/VBA/ParseCoordinator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ private void ParseAll(object requestor)
436436
ParsingSuspendLock.ExitReadLock();
437437
}
438438
}
439-
if (watch != null) Logger.Debug("Parsing run finished after {0}s. (thread {1}).", watch.Elapsed.TotalSeconds, Thread.CurrentThread.ManagedThreadId);
439+
if (watch != null) Logger.Info("Parsing run finished after {0}s. (thread {1}).", watch.Elapsed.TotalSeconds, Thread.CurrentThread.ManagedThreadId);
440440
}
441441

442442
protected void ParseAllInternal(object requestor, CancellationToken token)

0 commit comments

Comments
 (0)