]> git.ozlabs.org Git - ccan/blobdiff - ccan/tdb2/test/logging.c
tdb2: remove: it's now in SAMBA where it belongs.
[ccan] / ccan / tdb2 / test / logging.c
diff --git a/ccan/tdb2/test/logging.c b/ccan/tdb2/test/logging.c
deleted file mode 100644 (file)
index 0712cc0..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include <ccan/tap/tap.h>
-#include "logging.h"
-
-unsigned tap_log_messages;
-const char *log_prefix = "";
-char *log_last = NULL;
-bool suppress_logging;
-
-union tdb_attribute tap_log_attr = {
-       .log = { .base = { .attr = TDB_ATTRIBUTE_LOG },
-                .fn = tap_log_fn }
-};
-
-void tap_log_fn(struct tdb_context *tdb,
-               enum tdb_log_level level,
-               enum TDB_ERROR ecode,
-               const char *message, void *priv)
-{
-       if (suppress_logging)
-               return;
-
-       diag("tdb log level %u: %s: %s%s",
-            level, tdb_errorstr(ecode), log_prefix, message);
-       if (log_last)
-               free(log_last);
-       log_last = strdup(message);
-       tap_log_messages++;
-}
-