Dropwizard Admin: Change loglevel for all
问题 My config is the standard logging: # The default level of all loggers. Can be OFF, ERROR, WARN, INFO, DEBUG, TRACE, or ALL. level: INFO # Logger-specific levels. loggers: # Sets the level for 'com.example.app' to DEBUG. com.example.app: DEBUG # Redirects SQL logs to a separate file org.hibernate.SQL: level: DEBUG I want to change the default log level for all loggers to DEBUG . I've tried the following and nothing works (say admin port is 1234): curl -X POST -d "logger=all&level=DEBUG"