Enable all debug sections when SIGUSR2 is triggered
diff --git a/src/log.c b/src/log.c
index ca2f6af..ed6e428 100644
--- a/src/log.c
+++ b/src/log.c
@@ -92,7 +92,10 @@
 
 void __btd_toggle_debug()
 {
-	/* FIXME: if not '*' already switch to full debug */
+	struct btd_debug_desc *desc;
+
+	for (desc = __start___debug; desc < __stop___debug; desc++)
+		desc->flags |= BTD_DEBUG_FLAG_PRINT;
 }
 
 void __btd_log_init(const char *debug, int detach)