Skip to content

Commit

Permalink
Reduce logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
noboomu committed Jul 19, 2022
1 parent ee303d9 commit f6a8f19
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Proteus Changelog.
## Unreleased
### No issue

**Tweak parameters.**


[ee303d97a9b0d7b](https://github.com/noboomu/proteus/commit/ee303d97a9b0d7b) Joshua Bauer *2022-07-19 02:03:30*

**Add graceful shutdown option.**


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void bindMappers()

String className = config.getString("application.jacksonModule");

log.debug("Installing JacksonModule " + className);
// log.debug("Installing JacksonModule " + className);

Class<? extends AbstractModule> clazz = (Class<? extends AbstractModule>) Class.forName(className);

Expand All @@ -75,7 +75,7 @@ public void bindMappers()

String className = config.getString("application.xmlModule");

log.debug("Installing XmlModule " + className);
// log.debug("Installing XmlModule " + className);

Class<? extends AbstractModule> clazz = (Class<? extends AbstractModule>) Class.forName(className);

Expand All @@ -87,7 +87,7 @@ public void bindMappers()

this.binder().addError(e);

log.error(e.getMessage(), e);
log.error("Failed to install standard serialization modules", e);

install(new XmlModule());

Expand All @@ -113,7 +113,7 @@ protected void configure()

String className = config.getString("application.defaultResponseListener");

log.debug("Installing DefaultResponseListener " + className);
//log.debug("Installing DefaultResponseListener " + className);

Class<? extends DefaultResponseListener> clazz = (Class<? extends DefaultResponseListener>) Class.forName(className);

Expand All @@ -131,7 +131,7 @@ protected void configure()

String className = config.getString("application.fallbackHandler");

log.debug("Installing FallbackListener " + className);
// log.debug("Installing FallbackListener " + className);

Class<? extends HttpHandler> clazz = (Class<? extends HttpHandler>) Class.forName(className);
HttpHandler fallbackHandler = clazz.newInstance();
Expand Down

0 comments on commit f6a8f19

Please sign in to comment.