syslog banner post-init.  default to debugging enabled, for now.
diff --git a/dbfs.c b/dbfs.c
index 31ea936..749ae86 100644
--- a/dbfs.c
+++ b/dbfs.c
@@ -21,6 +21,7 @@
 
 #define _BSD_SOURCE
 
+#include "dbfs-config.h"
 #include <fuse_lowlevel.h>
 #include <stdlib.h>
 #include <string.h>
@@ -32,7 +33,7 @@
 #include <db.h>
 #include "dbfs.h"
 
-int debugging = 0;
+int debugging = 1;
 
 static void dbfs_fill_attr(const struct dbfs_inode *ino, struct stat *st)
 {
@@ -107,8 +108,7 @@
 
 	gfs = fs;
 
-	if (debugging)
-		syslog(LOG_DEBUG, "EXIT dbfs_op_init");
+	syslog(LOG_INFO, PACKAGE_STRING " initialized");
 }
 
 static void dbfs_op_destroy(void *userdata)