Skip to content

Commit

Permalink
fix verbosity mistake in tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianburckhardt committed Sep 1, 2021
1 parent fe24c4b commit 9c8e0d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public void LeaseRenewed(double elapsedSeconds, double timing)
{
if (this.logLevelLimit <= LogLevel.Debug)
{
this.logger.LogInformation("Part{partition:D2} PartitionLease renewed after {elapsedSeconds:F2}s timing={timing:F2}s", this.partitionId, elapsedSeconds, timing);
this.logger.LogDebug("Part{partition:D2} PartitionLease renewed after {elapsedSeconds:F2}s timing={timing:F2}s", this.partitionId, elapsedSeconds, timing);
this.etwLogDebug?.FasterLeaseRenewed(this.account, this.taskHub, this.partitionId, elapsedSeconds, TraceUtils.AppName, TraceUtils.ExtensionVersion);
}
}
Expand Down

0 comments on commit 9c8e0d3

Please sign in to comment.