You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.LogWarning("{failed} messages could not be re-imported. This could indicate a problem with the data. Contact Particular support if you need help with recovering the messages.",failed);
73
+
logger.LogWarning("{FailureCount} messages could not be re-imported. This could indicate a problem with the data. Contact Particular support if you need help with recovering the messages.",failed);
@@ -76,12 +76,12 @@ public Task Start(Action onFailedOnStartup, CancellationToken cancellationToken)
76
76
77
77
if(startup)
78
78
{
79
-
log.LogError(e,"Error during initial startup attempt for {taskName}.",taskName);
79
+
log.LogError(e,"Error during initial startup attempt for {TaskName}.",taskName);
80
80
onFailedOnStartup();
81
81
return;
82
82
}
83
83
84
-
log.LogError(e,"Error while trying to start {taskName}. Starting will be retried in {timeToWaitBetweenStartupAttempts}.",taskName,timeToWaitBetweenStartupAttempts);
84
+
log.LogError(e,"Error while trying to start {TaskName}. Starting will be retried in {TimeToWaitBetweenStartupAttempts}.",taskName,timeToWaitBetweenStartupAttempts);
85
85
}
86
86
try
87
87
{
@@ -101,13 +101,13 @@ public async Task Stop(CancellationToken cancellationToken)
0 commit comments