projects
/
platform
/
core
/
uifw
/
coregl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f221a1a
)
[Title] Changed error message outputs from stdout to stderr
author
Haegeun Park
<haegeun.park@samsung.com>
Tue, 12 Nov 2013 04:59:54 +0000
(20:59 -0800)
committer
Gerrit Code Review
<gerrit2@localhost>
Tue, 12 Nov 2013 05:07:05 +0000
(14:07 +0900)
[Issue#]
[Problem]
[Cause] Some testcases read stdout, then fail parsing.
[Solution]
src/coregl_internal.h
patch
|
blob
|
history
diff --git
a/src/coregl_internal.h
b/src/coregl_internal.h
index
c48647d
..
3155850
100644
(file)
--- a/
src/coregl_internal.h
+++ b/
src/coregl_internal.h
@@
-23,11
+23,11
@@
// Disable dlog for debugging urgent issues //
#ifdef COREGL_DEBUG
# undef LOGE
-# define LOGE
printf
+# define LOGE
(...) fprintf(stderr, __VA_ARGS__)
# undef LOGW
-# define LOGW
printf
+# define LOGW
(...) fprintf(stderr, __VA_ARGS__)
# undef LOGD
-# define LOGD
printf
+# define LOGD
(...) fprintf(stderr, __VA_ARGS__)
#endif
///////////////////////////////////////