MCPcopy Create free account
hub / github.com/apache/thrift / debug

Function debug

lib/cpp/test/processor/EventLog.cpp:32–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30static const char * DEBUG_EVENTLOG = getenv("DEBUG_EVENTLOG");
31
32void debug(const char* fmt, ...) {
33 if (DEBUG_EVENTLOG) {
34 va_list ap;
35 va_start(ap, fmt);
36 vfprintf(stderr, fmt, ap);
37 va_end(ap);
38
39 fprintf(stderr, "\n");
40 }
41}
42}
43
44namespace apache {

Callers 6

ReadMethod · 0.85
WriteMethod · 0.85
FlushMethod · 0.85
ServeOneMethod · 0.85
EventLogMethod · 0.85
appendMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected