diff --git a/client/win/wingui.cpp b/client/win/wingui.cpp index 93ff24986b..5ee78ab6e5 100755 --- a/client/win/wingui.cpp +++ b/client/win/wingui.cpp @@ -40,9 +40,9 @@ void show_message(PROJECT* p, char* msg, int priority) { g_myWnd->MessageUser(x, message, priority); } if (priority == MSG_INFO) - fprintf(stderr, "%s: %s (priority: low)\n", x, message); + fprintf(stdout, "%s: %s\n", x, message); else - fprintf(stderr, "%s: %s (priority: high)\n", x, message); + fprintf(stderr, "%s: %s\n", x, message); } int add_new_project() {