mirror of
https://github.com/github/codeql.git
synced 2026-04-24 16:25:15 +02:00
C#: Make Started log as Debug.
This commit is contained in:
@@ -111,12 +111,12 @@ namespace Semmle.Extraction.CSharp.Standalone
|
||||
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)
|
||||
@@ -166,4 +166,4 @@ namespace Semmle.Extraction.CSharp.Standalone
|
||||
return ExitCode.Ok;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user