MINOR: da: silent logging by default and displaying DeviceAtlas support if built.
diff --git a/src/haproxy.c b/src/haproxy.c
index 6e75f72..04bfabd 100644
--- a/src/haproxy.c
+++ b/src/haproxy.c
@@ -180,7 +180,7 @@
 #endif
 #ifdef USE_DEVICEATLAS
 	.deviceatlas = {
-		.loglevel = DA_SEV_INFO,
+		.loglevel = 0,
 		.jsonpath = 0,
 		.cookiename = 0,
 		.cookienamelen = 0,
@@ -400,6 +400,9 @@
 	printf("Built with network namespace support\n");
 #endif
 
+#ifdef USE_DEVICEATLAS
+    printf("Built with DeviceAtlas support\n");
+#endif
 #ifdef USE_51DEGREES
 	printf("Built with 51Degrees support\n");
 #endif