mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-07 09:56:59 +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);
|
||||
|
||||
#ifdef _DEBUG
|
||||
vfprintf(stdout, format, ap);
|
||||
fflush(stdout);
|
||||
vfprintf(stderr, format, ap);
|
||||
fflush(stderr);
|
||||
#endif
|
||||
|
||||
va_end(ap);
|
||||
|
Loading…
Reference in New Issue
Block a user