MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / Notice

Method Notice

Source/Debugger.cpp:84–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82}
83
84void 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
99void cDebugger::Error(const std::string& pMessage) {
100 ConsoleOpen();

Callers 6

saveMethod · 0.80
RunTestsMethod · 0.80
ProcessCLIMethod · 0.80
printFunction · 0.80
consoleLogFunction · 0.80

Calls

no outgoing calls

Tested by 1

RunTestsMethod · 0.64