Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
083f87de9dc393ce982c10bcbe8f624e27ee9e9b...80de2727ae620ef4e770c3c6894c102751aaaf24
Commits (1)
Lower the "SSH session establishment failed" log msg level
· 80de2727
Rob Swindell
authored
Feb 27, 2022
from NOTICE to INFO, per Nelgin
80de2727
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/sbbs3/main.cpp
src/sbbs3/main.cpp
+1
-1
No files found.
src/sbbs3/main.cpp
View file @
80de2727
...
...
@@ -5395,7 +5395,7 @@ NO_SSH:
}
}
if
(
ssh_failed
)
{
lprintf
(
LOG_
NOTICE
,
"%04d SSH session establishment failed"
,
client_socket
);
lprintf
(
LOG_
INFO
,
"%04d SSH session establishment failed"
,
client_socket
);
SSH_END
(
client_socket
);
close_socket
(
client_socket
);
continue
;
...
...