MCPcopy Create free account
hub / github.com/csound/csound / log

Method log

include/OpcodeBase.hpp:218–228  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

216 return (uint32_t)opds.optext->t.inArgCount;
217 }
218 void log(CSOUND *csound, const char *format,...)
219 {
220 va_list args;
221 va_start(args, format);
222 if(csound) {
223 csound->MessageV(csound, 0, format, args);
224 } else {
225 vfprintf(stdout, format, args);
226 }
227 va_end(args);
228 }
229 void warn(CSOUND *csound, const char *format,...)
230 {
231 if(csound) {

Callers 15

compileFunction · 0.45
logger.jsFile · 0.45
module.jsFile · 0.45
onPlayStateChangeMethod · 0.45
messageEventHandlerFunction · 0.45
requestMicrophoneNodeFunction · 0.45
enableAudioInputFunction · 0.45
processSharedArrayBufferFunction · 0.45
wasi.jsFile · 0.45
server.cjsFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected