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

Method verbose

src/remote/server/ReplServer.cpp:499–512  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

497 }
498
499 void verbose(const char* msg, ...) const
500 {
501 if (m_config->verboseLogging)
502 {
503 char buffer[BUFFER_LARGE];
504
505 va_list ptr;
506 va_start(ptr, msg);
507 VSNPRINTF(buffer, sizeof(buffer), msg, ptr);
508 va_end(ptr);
509
510 logReplicaVerbose(m_config->dbName, buffer);
511 }
512 }
513
514 private:
515 AutoPtr<const Replication::Config> m_config;

Callers 2

process_archiveFunction · 0.80
process_threadFunction · 0.80

Calls 1

logReplicaVerboseFunction · 0.85

Tested by

no test coverage detected