This commit is contained in:
2018-11-15 17:52:10 +00:00
parent e479964fce
commit 8b23577957
3 changed files with 10 additions and 9 deletions

View File

@@ -36,7 +36,7 @@ namespace AyaNova.Util
if (attempts == times)
throw;
log.LogError(ex, $"{logPrepend} Exception caught on attempt {attempts} - will retry after delay {delay}");
log.LogError(ex, $"{logPrepend} Exception caught on attempt {attempts} of {times} - will retry after delay {delay}");
Task.Delay(delay).Wait();
}