Skip to content

Commit

Permalink
fixed imports and logger
Browse files Browse the repository at this point in the history
  • Loading branch information
Davide Cerbo committed Nov 14, 2016
1 parent f06b32f commit 31bc725
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@

import javax.inject.Inject;
import javax.ws.rs.*;
import javax.ws.rs.client.Client;
import javax.ws.rs.client.ClientBuilder;
import javax.ws.rs.core.MediaType;
import java.util.List;
import java.util.UUID;

@Api("Hello")
@Path("/hello")
Expand All @@ -22,6 +23,8 @@
public class HelloResource
{

private Logger logger = LoggerFactory.getLogger(HelloResource.class);

@Inject
OObjectDatabaseTx db;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<configuration debug="true">

<appender name="STDOUT"
<appender name="CORRELATION_ID"
class="ch.qos.logback.core.ConsoleAppender">

<encoder>
Expand All @@ -10,7 +10,7 @@
</encoder>
</appender>

<root level="INFO">
<root level="INFO" name="${package}">
<appender-ref ref="STDOUT"/>
</root>

Expand Down

0 comments on commit 31bc725

Please sign in to comment.