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

Function printMsg

src/jrd/trace/TraceCmdLine.cpp:50–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48 const USHORT TRACEMGR_MSG_FAC = 25;
49
50 void printMsg(USHORT number, const SafeArg& arg, bool newLine = true)
51 {
52 char buffer[256];
53 fb_msg_format(NULL, TRACEMGR_MSG_FAC, number, sizeof(buffer), buffer, arg);
54 if (newLine)
55 printf("%s\n", buffer);
56 else
57 printf("%s", buffer);
58 }
59
60 void printMsg(USHORT number, bool newLine = true)
61 {

Callers 2

usageFunction · 0.70
fbtraceFunction · 0.70

Calls 1

fb_msg_formatFunction · 0.85

Tested by

no test coverage detected