summaryrefslogtreecommitdiffstats
path: root/js/dav/lib/debug.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/dav/lib/debug.js')
-rw-r--r--js/dav/lib/debug.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/js/dav/lib/debug.js b/js/dav/lib/debug.js
deleted file mode 100644
index afbd6ee6..00000000
--- a/js/dav/lib/debug.js
+++ /dev/null
@@ -1,7 +0,0 @@
-export default function debug(topic) {
- return function(message) {
- if (debug.enabled) {
- console.log(`[${topic}] ${message}`);
- }
- };
-}