From fe1fc55c616f175a3ebdd8edb64dca0430c149d7 Mon Sep 17 00:00:00 2001 From: Amitay Isaacs Date: Wed, 29 May 2013 14:05:50 +1000 Subject: tdb: Sync to tdb 1.2.11 from upstream (This used to be ctdb commit bb3a32ec055432afc7225c9fd7504fb187694bda) --- ctdb/lib/tdb/test/logging.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 ctdb/lib/tdb/test/logging.c (limited to 'ctdb/lib/tdb/test/logging.c') diff --git a/ctdb/lib/tdb/test/logging.c b/ctdb/lib/tdb/test/logging.c new file mode 100644 index 00000000000..dfab4868d25 --- /dev/null +++ b/ctdb/lib/tdb/test/logging.c @@ -0,0 +1,33 @@ +#include "logging.h" +#include "tap-interface.h" +#include +#include +#include +#include + +bool suppress_logging = false; +const char *log_prefix = ""; + +/* Turn log messages into tap diag messages. */ +static void taplog(struct tdb_context *tdb, + enum tdb_debug_level level, + const char *fmt, ...) +{ + va_list ap; + char line[200]; + + if (suppress_logging) + return; + + va_start(ap, fmt); + vsprintf(line, fmt, ap); + va_end(ap); + + /* Strip trailing \n: diag adds it. */ + if (line[0] && line[strlen(line)-1] == '\n') + diag("%s%.*s", log_prefix, (unsigned)strlen(line)-1, line); + else + diag("%s%s", log_prefix, line); +} + +struct tdb_logging_context taplogctx = { taplog, NULL }; -- cgit