Output Limelogs to standard error

This commit is contained in:
Cameron Gutman 2015-01-09 16:58:58 -05:00
parent 115ad827a8
commit cf957025e6

View File

@ -35,7 +35,8 @@ extern PLATFORM_CALLBACKS platformCallbacks;
sprintf(DbgBuf, s, ##__VA_ARGS__); \
platformCallbacks.debugPrint(DbgBuf)
#else
#define Limelog printf
#define Limelog(s, ...) \
fprintf(stderr, s, ##__VA_ARGS__)
#endif
#if defined(LC_WINDOWS_PHONE) || defined(LC_WINDOWS)