Fix debug message

This commit is contained in:
AsamK 2022-01-16 10:06:43 +01:00
parent a01d6b085a
commit fe9989197f

View file

@ -332,7 +332,7 @@ public class SendHelper {
allResults.addAll(results);
}
final var duration = Duration.ofMillis(System.currentTimeMillis() - startTime);
logger.debug("Sending took {} seconds", duration.toString());
logger.debug("Sending took {}", duration.toString());
return allResults;
}