From 0d70f8c75fbdd18800d61bc8b47b2a092caaf3b9 Mon Sep 17 00:00:00 2001 From: joshua bauer Date: Thu, 14 Jun 2018 18:40:42 -0700 Subject: [PATCH] Minor fixes. --- conf/logback.xml | 6 +++--- pom.xml | 2 +- .../java/io/sinistral/proteus/server/ServerRequest.java | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/conf/logback.xml b/conf/logback.xml index 7e1a78f..74ae6c0 100644 --- a/conf/logback.xml +++ b/conf/logback.xml @@ -20,9 +20,9 @@ - - - + + + io.sinistral.proteus.services diff --git a/pom.xml b/pom.xml index 4ac4e7d..066306c 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 io.sinistral proteus-core - 0.2.1-SNAPSHOT + 0.2.2-SNAPSHOT proteus core Proteus is an extremely light, fast, and flexible Java REST API framework built atop Undertow. http://github.com/noboomu/proteus diff --git a/src/main/java/io/sinistral/proteus/server/ServerRequest.java b/src/main/java/io/sinistral/proteus/server/ServerRequest.java index 552579a..98b139a 100644 --- a/src/main/java/io/sinistral/proteus/server/ServerRequest.java +++ b/src/main/java/io/sinistral/proteus/server/ServerRequest.java @@ -172,7 +172,7 @@ private void extractBytes() throws IOException buffer.rewind(); - //log.debug("buffer " + new String(buffer.array())); + log.debug("buffer " + new String(buffer.array())); exchange.putAttachment(BYTE_BUFFER_KEY, buffer);