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
Commits
b105d777
Commit
b105d777
authored
Aug 23, 2020
by
Rob Swindell
💬
Browse files
Lower log level of the "Perhaps node is already runnnig" log msg from ERR to WARN
parent
6b74a4a9
Changes
1
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 @
b105d777
...
...
@@ -3581,7 +3581,7 @@ bool sbbs_t::init()
SAFEPRINTF
(
str
,
"%snode.log"
,
cfg
.
node_dir
);
if
((
logfile_fp
=
fopen
(
str
,
"a+b"
))
==
NULL
)
{
errormsg
(
WHERE
,
ERR_OPEN
,
str
,
0
);
lprintf
(
LOG_
ERR
,
"Perhaps this node is already running"
);
lprintf
(
LOG_
NOTICE
,
"Perhaps this node is already running"
);
return
(
false
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment