Toggle navigation
Sign in
taskrambler
/
libtrbase
·
Commits
GitLab
Go to group
Project
Activity
Files
Commits
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Forks
Snippets
Network
Download as
Email Patches
Plain Diff
Browse Files
Commit
a92c8ac7e4f9eeb8f9849b6f6bcc6d847b16ecbf
Authored by
Georg Hopp
2014-09-28 21:09:30 +0100
1 parent
16e092af
flush errorlog to stderr
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
0 deletions
src/stderr.c
src/stderr.c
View file @
a92c8ac
...
...
@@ -31,6 +31,7 @@ void
31
31
logStderr
(
void
*
this
,
TR_logger_level
level
,
const
char
*
const
msg
)
32
32
{
33
33
fprintf
(
stderr
,
"[%s] %s
\n
"
,
TR_logger_level_str
[
level
],
msg
);
34
+
fflush
(
stderr
);
34
35
}
35
36
36
37
TR_INIT_IFACE
(
TR_Logger
,
logStderr
);
...
...
Please
register
or
login
to post a comment