[habot] Change "Removing old ephemeral card" log message to debug level (#1138)

Signed-off-by: Matthew Skinner <matt@pcmus.com>
pull/1149/head
Matthew Skinner 2021-08-26 02:59:29 +10:00 committed by GitHub
parent 5541f3ea65
commit e705ec7bb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ public class CardRegistry extends AbstractRegistry<Card, String, CardProvider> {
.collect(Collectors.toList());
for (Card card : oldCards) {
logger.info("Removing old ephemeral card {}", card.getUID());
logger.debug("Removing old ephemeral card {}", card.getUID());
remove(card.getUID());
}