Skip to content

Commit 5c67f90

Browse files
authored
Update Logger.cpp to fix a minor typo
1 parent 20f023d commit 5c67f90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/host/cpp/Logger.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ void log_debug(const char *format, ...) {
2525
fprintf(stderr, "\n");
2626
#else
2727
// Fallback for other platforms
28-
fprintf(stderr, "[NodeApiHost] ");
28+
fprintf(stdout, "[NodeApiHost] ");
2929
vfprintf(stdout, format, args);
3030
fprintf(stdout, "\n");
3131
#endif
3232

3333
va_end(args);
3434
}
35-
} // namespace callstack::nodeapihost
35+
} // namespace callstack::nodeapihost

0 commit comments

Comments
 (0)