mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-08 12:40:50 +00:00
Print verbose_log() on stderr instead of stdout when _DEBUG is defined
This commit is contained in:
parent
e525fc10a6
commit
12d27031e8
@ -68,8 +68,8 @@ void verbose_log(const char* format, ...)
|
|||||||
fflush(app::log_fileptr);
|
fflush(app::log_fileptr);
|
||||||
|
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
vfprintf(stdout, format, ap);
|
vfprintf(stderr, format, ap);
|
||||||
fflush(stdout);
|
fflush(stderr);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
va_end(ap);
|
va_end(ap);
|
||||||
|
Loading…
Reference in New Issue
Block a user