MCPcopy Create free account
hub / github.com/apache/trafficserver / print

Method print

plugins/esi/test/print_funcs.cc:48–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46}
47
48void
49DbgCtl::print(const char *tag, const char * /* file */, const char * /* function */, int /* line */, const char *fmt, ...)
50{
51 char buf[LINE_SIZE];
52 va_list ap;
53 va_start(ap, fmt);
54 vsnprintf(buf, LINE_SIZE, fmt, ap);
55 printf("Debug (%s): %s\n", tag, buf);
56 va_end(ap);
57 if (fakeDebugLogEnabled) {
58 gFakeDebugLog.append(buf);
59 }
60}
61
62class DbgCtl::_RegistryAccessor
63{

Callers 1

create_statMethod · 0.45

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected