| 82 | } |
| 83 | |
| 84 | void cDebugger::Notice(const std::string& pMessage) { |
| 85 | ConsoleOpen(); |
| 86 | |
| 87 | if (g_Fodder->mParams->mAppVeyor) { |
| 88 | std::string Command = "appveyor AddMessage "; |
| 89 | Command += "\"" + pMessage + "\""; |
| 90 | Command += " -Category Information"; |
| 91 | system(Command.c_str()); |
| 92 | } |
| 93 | else { |
| 94 | Output(pMessage + "\n" ); |
| 95 | } |
| 96 | |
| 97 | } |
| 98 | |
| 99 | void cDebugger::Error(const std::string& pMessage) { |
| 100 | ConsoleOpen(); |
no outgoing calls