Skip to content

Commit

Permalink
Fix some missing string interpolation in TvDBRateLimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
Cazzar committed Oct 6, 2017
1 parent 2d698a5 commit d045ed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shoko.Server/Providers/TvDB/TvDBRateLimiter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void EnsureRate()
logger.Trace($"TvDBRateLimiter#{InstanceID}: Time since last request is {delay} ms, throttling for {currentDelay} ms.");
Thread.Sleep(currentDelay);

logger.Trace("TvDBRateLimiter#{InstanceID}: Sending TvDB command.");
logger.Trace($"TvDBRateLimiter#{InstanceID}: Sending TvDB command.");
_requestWatch.Restart();
}
}
Expand Down

0 comments on commit d045ed4

Please sign in to comment.