We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa4c6c4 commit ed6f9feCopy full SHA for ed6f9fe
src/main/java/org/embulk/output/sftp/SftpFileOutput.java
@@ -82,6 +82,7 @@ private FileSystemOptions initializeFsOptions(PluginTask task)
82
if (task.getSecretKeyFilePath().isPresent()) {
83
IdentityInfo identityInfo = new IdentityInfo(new File((task.getSecretKeyFilePath().get())), task.getSecretKeyPassphrase().getBytes());
84
SftpFileSystemConfigBuilder.getInstance().setIdentityInfo(fsOptions, identityInfo);
85
+ logger.info("set identity: {}", task.getSecretKeyFilePath().get());
86
}
87
88
catch (FileSystemException e) {
0 commit comments