Skip to content

Commit

Permalink
C#: Make Started log as Debug.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelnebel committed Apr 15, 2024
1 parent ddfed6e commit 336a18a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,12 @@ public void Analysed(int item, int total, string source, string output, TimeSpan
AnalysisAction.UpToDate => "up to date",
_ => "unknown action"
};
logger.LogInfo($"[{item}/{total}] {source} ({extra})");
logger.LogDebug($"[{item}/{total}] {source} ({extra})");
}

public void Started(int item, int total, string source)
{
logger.LogInfo($"[{item}/{total}] {source} (processing started)");
logger.LogDebug($"[{item}/{total}] {source} (processing started)");
}

public void MissingType(string type)
Expand Down Expand Up @@ -166,4 +166,4 @@ public static ExitCode Run(Options options)
return ExitCode.Ok;
}
}
}
}

0 comments on commit 336a18a

Please sign in to comment.