Browse Source

turn off request logs

Patrick Falls 12 years ago
parent
commit
60dd82f827
1 changed files with 14 additions and 1 deletions
  1. 14 1
      dropwizard/hello-world.yml

+ 14 - 1
dropwizard/hello-world.yml

@@ -1,6 +1,13 @@
 http:
   port: 9000
 
+  requestLog:
+
+    # Settings for logging to stdout.
+    console:
+      # If true, log requests to stdout.
+      enabled: false
+
 database:
   # the name of your JDBC driver
   driverClass: com.mysql.jdbc.Driver
@@ -42,4 +49,10 @@ database:
 logging:
 
   # The default level of all loggers. Can be OFF, ERROR, WARN, INFO, DEBUG, TRACE, or ALL.
-  level: ERROR
+  level: OFF
+
+  console:
+
+    # If true, write log statements to stdout.
+    enabled: false
+