Revert LogLevel back to ERROR to avoid potential issues with INFO level

parent 8d438b2f
......@@ -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 INFO option for debugging
// Add LogLevel ERROR option
new_args[idx++] = "-o";
new_args[idx++] = "LogLevel=INFO";
new_args[idx++] = "LogLevel=ERROR";
// 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