Skip to content

Commit

Permalink
shell/openssh: set test log level to DEBUG3
Browse files Browse the repository at this point in the history
See #36
  • Loading branch information
vs49688 committed Jul 29, 2020
1 parent 07b11b6 commit a3c3056
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,17 @@ public void opensshClientTest() throws IOException {
/* Use the on-disk key. */
try(OpenSSHClient client = new OpenSSHClient(uri, tmpDir.getRoot().toPath(), Optional.of(keyPath), Optional.of(openSsh), Map.of(
"StrictHostKeyChecking", "no",
"UserKnownHostsFile", "/dev/null"
"UserKnownHostsFile", "/dev/null",
"LogLevel", "DEBUG3"
))) {
testClient(client);
}

/* Use the in-memory key. */
try(OpenSSHClient client = new OpenSSHClient(uri, tmpDir.getRoot().toPath(), Optional.of(memKeyPath), Optional.of(openSsh), Map.of(
"StrictHostKeyChecking", "no",
"UserKnownHostsFile", "/dev/null"
"UserKnownHostsFile", "/dev/null",
"LogLevel", "DEBUG3"
))) {
testClient(client);
}
Expand Down

0 comments on commit a3c3056

Please sign in to comment.