Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit d6d1925

Browse files
committed
Fix trace messages
1 parent 70a8594 commit d6d1925

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/GitHub.Api/Application/ApplicationManagerBase.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ protected void Initialize()
4444

4545
public virtual async Task Run(bool firstRun)
4646
{
47-
Logger.Trace("Run");
48-
Logger.Trace("CurrentDirectory", NPath.CurrentDirectory);
47+
Logger.Trace("Run - CurrentDirectory", NPath.CurrentDirectory);
4948

5049
if (Environment.GitExecutablePath != null)
5150
{
@@ -139,7 +138,7 @@ public void RestartRepository()
139138

140139
private void RunRepositoryManager()
141140
{
142-
Logger.Trace("RestartRepository");
141+
Logger.Trace("RunRepositoryManager");
143142

144143
if (Environment.RepositoryPath != null)
145144
{

0 commit comments

Comments
 (0)