1

我正在编写一个小应用程序来通过 SSH 连接到服务器列表并执行一些命令。我正在使用jcabi-ssh。当我运行程序时,jcabi-ssh 输出到控制台,其中包含以下行:

[main] WARN com.jcabi.ssh.SSH - Permanently added '192.168.4.2' (RSA) to the list of known hosts.
[main] INFO com.jcabi.ssh.Execution$Default - $ ping -c 1 google.com

我的代码片段如下:

Shell shell = new SSHByPassword(targetServer.toString(), Integer.parseInt(port), username.toString(), password.toString());
exitCode=shell.exec("ping -c 1 google.com",stdin,stdout,stderr);

我想隐藏控制台输出或将其重定向到文件。我查看了源代码,但似乎我无法通过方法调用来做到这一点。有没有办法做我想做的事?

谢谢!

4

1 回答 1

0

您应该只禁止登录您的应用程序。jcabi-ssh 正在使用 slf4j。您在日志中看到的内容是通过 slf4j 到(很可能)log4j。确保日志级别com.jcabi.ssh设置为ERROR,你会没事的。

于 2016-07-19T01:19:01.833 回答