Skip to content

Commit 336a18a

Browse files
committed
C#: Make Started log as Debug.
1 parent ddfed6e commit 336a18a

File tree

1 file changed

+3
-3
lines changed
  • csharp/extractor/Semmle.Extraction.CSharp.Standalone

1 file changed

+3
-3
lines changed

csharp/extractor/Semmle.Extraction.CSharp.Standalone/Extractor.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,12 @@ public void Analysed(int item, int total, string source, string output, TimeSpan
111111
AnalysisAction.UpToDate => "up to date",
112112
_ => "unknown action"
113113
};
114-
logger.LogInfo($"[{item}/{total}] {source} ({extra})");
114+
logger.LogDebug($"[{item}/{total}] {source} ({extra})");
115115
}
116116

117117
public void Started(int item, int total, string source)
118118
{
119-
logger.LogInfo($"[{item}/{total}] {source} (processing started)");
119+
logger.LogDebug($"[{item}/{total}] {source} (processing started)");
120120
}
121121

122122
public void MissingType(string type)
@@ -166,4 +166,4 @@ public static ExitCode Run(Options options)
166166
return ExitCode.Ok;
167167
}
168168
}
169-
}
169+
}

0 commit comments

Comments
 (0)