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

Method logConflict

src/jrd/replication/Applier.cpp:1414–1426  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1412}
1413
1414void Applier::logConflict(const char* msg, ...)
1415{
1416#ifdef LOG_CONFLICTS
1417 char buffer[BUFFER_LARGE];
1418
1419 va_list ptr;
1420 va_start(ptr, msg);
1421 vsprintf(buffer, msg, ptr);
1422 va_end(ptr);
1423
1424 logReplicaWarning(m_database, buffer);
1425#endif
1426}

Callers

nothing calls this directly

Calls 2

vsprintfFunction · 0.85
logReplicaWarningFunction · 0.85

Tested by

no test coverage detected