Skip to content

Commit b08eae3

Browse files
committed
Fix copilot feedback
1 parent 7c3645a commit b08eae3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/EdFi.Db.Deploy/DbUpLogger.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ public void LogWarning(string format, params object[] args)
4545

4646
public void LogTrace(string format, params object[] args)
4747
{
48-
LogInformation(format, args);
48+
Preconditions.ThrowIfNull(format, nameof(format));
49+
Preconditions.ThrowIfNull(args, nameof(args));
50+
51+
_logger.Debug(string.Format(format, args));
4952
}
5053

5154
public void LogDebug(string format, params object[] args)

0 commit comments

Comments
 (0)