Skip to content
Snippets Groups Projects
Commit 980b1021 authored by Michael Simon's avatar Michael Simon
Browse files

Fix logging statement

parent a96a3630
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,7 @@ public class SshPubKeyServiceImpl extends BaseServiceImpl<SshPubKeyEntity> imple
public SshPubKeyEntity expireKey(SshPubKeyEntity entity, String executor) {
entity = dao.merge(entity);
entity.setKeyStatus(SshPubKeyStatus.EXPIRED);
logger.debug("Setting key {} to expired");
logger.debug("Setting key {} to expired", entity.getId());
for (SshPubKeyRegistryEntity regKey : entity.getSshPubKeyRegistries()) {
logger.debug("Deleting registry connection {} for key {}", regKey.getId(), entity.getId());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment