Print dialog text to the console

This commit is contained in:
Cameron Gutman 2019-07-29 21:04:17 -07:00
parent 46c2236342
commit d076f881eb

View File

@ -64,6 +64,7 @@ VOID CALLBACK MsgBoxHelpCallback(LPHELPINFO lpHelpInfo)
void DisplayMessage(const char* message, const char* helpUrl = nullptr, MessagePriority priority = MpError, bool terminal = true)
{
fprintf(CONSOLE_OUT, "%s\n", message);
fprintf(LOG_OUT, "%s\n", message);
if (terminal) {