Skip to content

Commit b3fb503

Browse files
committed
Fix format string.
1 parent 96ec5a2 commit b3fb503

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/ch/cyberduck/core/vault/LoadingVaultLookupListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public Vault load(final Session session, final Path directory, final String mast
5252
registry.add(vault.load(session, prompt, keychain));
5353
}
5454
catch(BackgroundException e) {
55-
log.warn(String.format("Failure %e loading vault %s", e, vault));
55+
log.warn(String.format("Failure %s loading vault %s", e, vault));
5656
throw new VaultUnlockCancelException(vault, e);
5757
}
5858
return vault;

0 commit comments

Comments
 (0)