소스 검색

emscripten: log to stdout instead of stderr.

legacy
Sam Hocevar 5 년 전
부모
커밋
acb4624084
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      src/base/log.cpp

+ 4
- 0
src/base/log.cpp 파일 보기

@@ -113,6 +113,10 @@ void msg::helper(MessageType type, char const *fmt, va_list ap)
widechar.resize(buf.length() + 1);
MultiByteToWideChar(CP_UTF8, 0, buf.c_str(), (int)buf.length() + 1, widechar.data(), widechar.count());
OutputDebugStringW(widechar.data());
# elif defined __EMSCRIPTEN__
fprintf(stdout, "%s: ", prefix[(int)type]);
vfprintf(stdout, fmt, ap);
fflush(stdout);
# else
fprintf(stderr, "%s: ", prefix[(int)type]);
vfprintf(stderr, fmt, ap);


불러오는 중...
취소
저장