MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / VIO_trace

Function VIO_trace

src/jrd/vio.cpp:119–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

117int vio_debug_flag = DEBUG_TRACE_ALL_INFO;
118
119void VIO_trace(int level, const char* format, ...)
120{
121 if (vio_debug_flag <= level)
122 return;
123
124 Firebird::string buffer;
125 va_list params;
126 va_start(params, format);
127 buffer.vprintf(format, params);
128 va_end(params);
129
130 buffer.rtrim("\n");
131
132 gds__trace(buffer.c_str());
133}
134
135#endif
136

Callers 15

getPagesInternalMethod · 0.85
Relation.cppFile · 0.85
VIO_backoutFunction · 0.85
VIO_chase_record_versionFunction · 0.85
VIO_dataFunction · 0.85
VIO_eraseFunction · 0.85
delete_version_chainFunction · 0.85
VIO_intermediate_gcFunction · 0.85
VIO_garbage_collectFunction · 0.85
VIO_getFunction · 0.85
VIO_get_currentFunction · 0.85
VIO_modifyFunction · 0.85

Calls 3

vprintfMethod · 0.80
rtrimMethod · 0.80
c_strMethod · 0.45

Tested by

no test coverage detected