aboutsummaryrefslogtreecommitdiff
path: root/include/log.h
diff options
context:
space:
mode:
authorWojciech Kosior <kwojtus@protonmail.com>2020-05-29 12:53:42 +0200
committerWojciech Kosior <kwojtus@protonmail.com>2020-05-29 12:53:42 +0200
commit459fd487fcbdc33fcccddbf4c82eae048275ba51 (patch)
tree9d50221aa5edeae9d4a7af3ffe4f00af7943a152 /include/log.h
parent251181f7e5d995e50736d6a86d29c3917e64af08 (diff)
download0tdns-459fd487fcbdc33fcccddbf4c82eae048275ba51.tar.gz
0tdns-459fd487fcbdc33fcccddbf4c82eae048275ba51.zip
drop C codebase
Diffstat (limited to 'include/log.h')
-rw-r--r--include/log.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/log.h b/include/log.h
deleted file mode 100644
index 154e6ec..0000000
--- a/include/log.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef ZTDNS_LOG_H
-#define ZTDNS_LOG_H
-
-#include <stdio.h>
-
-/* These functions will change later - it's just a "mock", so that every1 can
- * already write code with ztdns_info() :)
- * Use like ztdns_info("something wrong happened! %s", errorstring);
- */
-#define ztdns_debug(printfargs...) printf(printfargs)
-#define ztdns_info(printfargs...) printf(printfargs)
-#define ztdns_warn(printfargs...) printf(printfargs)
-#define ztdns_error(printfargs...) printf(printfargs)
-
-#endif /* ZTDNS_LOG_H */