Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
savoirfairelinux
jami-daemon
Commits
12bc81b9
Commit
12bc81b9
authored
Jun 22, 2010
by
Jonas Fonseca
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[#960] Fix logger warnings
parent
d91d9792
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sflphone-common/src/logger.cpp
sflphone-common/src/logger.cpp
+2
-2
No files found.
sflphone-common/src/logger.cpp
View file @
12bc81b9
...
...
@@ -87,12 +87,12 @@ void log(const int level, const char* format, ...)
message
=
buffer
;
message
=
prefix
+
message
;
syslog
(
level
,
message
.
c_str
());
syslog
(
level
,
"%s"
,
message
.
c_str
());
if
(
consoleLog
)
{
message
=
color_prefix
+
message
+
END_COLOR
+
"
\n
"
;
fprintf
(
stderr
,
message
.
c_str
());
fprintf
(
stderr
,
"%s"
,
message
.
c_str
());
}
}
...
...
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