Change SSH LogLevel from ERROR to INFO for debugging forked SSH process behavior

parent 4c7f1350
......@@ -179,9 +179,9 @@ char **modify_ssh_args(int argc, char *argv[], const char *original_host, int lo
new_args[idx++] = "-o";
new_args[idx++] = "UserKnownHostsFile=/dev/null";
// Add LogLevel ERROR option
// Add LogLevel INFO option for debugging
new_args[idx++] = "-o";
new_args[idx++] = "LogLevel ERROR";
new_args[idx++] = "LogLevel INFO";
// Add port argument for local tunnel
new_args[idx++] = "-p";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment