Skip to content

Commit

Permalink
change log back to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jianmingtu committed Mar 11, 2024
1 parent c8d6b1e commit 9aba54a
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ public class SftpAutoConfiguration {

public SftpAutoConfiguration(SftpProperties sftpProperties) {
this.sftpProperties = sftpProperties;
logger.info("SFTP Configuration: Host => [{}]", this.sftpProperties.getHost());
logger.info("SFTP Configuration: Port => [{}]", this.sftpProperties.getPort());
logger.info("SFTP Configuration: Username => [{}]", this.sftpProperties.getUsername());
logger.info("SFTP Configuration: Remote Directory => [{}]", this.sftpProperties.getRemoteLocation());
logger.info("SFTP Configuration: Known Host File => [{}]", this.sftpProperties.getKnownHostsFileName());
logger.debug("SFTP Configuration: Host => [{}]", this.sftpProperties.getHost());
logger.debug("SFTP Configuration: Port => [{}]", this.sftpProperties.getPort());
logger.debug("SFTP Configuration: Username => [{}]", this.sftpProperties.getUsername());
logger.debug("SFTP Configuration: Remote Directory => [{}]", this.sftpProperties.getRemoteLocation());
logger.debug("SFTP Configuration: Known Host File => [{}]", this.sftpProperties.getKnownHostsFileName());
}

/**
Expand Down

0 comments on commit 9aba54a

Please sign in to comment.