Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
VLMC
Commits
b541b442
Commit
b541b442
authored
Feb 24, 2014
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
VlmcLogger: Output non fatal message to stdout
parent
7550767d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/Tools/VlmcLogger.cpp
src/Tools/VlmcLogger.cpp
+3
-3
No files found.
src/Tools/VlmcLogger.cpp
View file @
b541b442
...
...
@@ -170,13 +170,13 @@ VlmcLogger::vlmcMessageHandler( QtMsgType type, const char* msg )
switch
(
type
)
{
case
QtDebugMsg
:
fprintf
(
std
err
,
"%s
\n
"
,
msg
);
fprintf
(
std
out
,
"%s
\n
"
,
msg
);
break
;
case
QtWarningMsg
:
fprintf
(
std
err
,
"%s
\n
"
,
msg
);
fprintf
(
std
out
,
"%s
\n
"
,
msg
);
break
;
case
QtCriticalMsg
:
fprintf
(
std
err
,
"%s
\n
"
,
msg
);
fprintf
(
std
out
,
"%s
\n
"
,
msg
);
break
;
case
QtFatalMsg
:
fprintf
(
stderr
,
"%s
\n
"
,
msg
);
...
...
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