Skip to content

Commit

Permalink
Improve logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkuthan committed Jan 8, 2014
1 parent 37450d4 commit be7ab2e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 18 deletions.
3 changes: 3 additions & 0 deletions src/main/java/example/domain/example2/Example2Identifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ public class Example2Identifier extends AbstractValueObject {

private String id;

Example2Identifier() {
}

public Example2Identifier(String id) {
this.id = requireNonNull(id);
}
Expand Down
16 changes: 0 additions & 16 deletions src/main/resources/logback.xml

This file was deleted.

7 changes: 5 additions & 2 deletions src/test/resources/logback-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
</encoder>
</appender>

<!-- <logger name="org.springframework" level="DEBUG" /> -->
<!-- <logger name="org.hibernate" level="DEBUG" /> -->
<logger name="ddd" level="INFO" />
<logger name="example" level="INFO" />

<logger name="org.springframework" level="INFO" />
<logger name="org.hibernate" level="INFO" />

<root level="OFF">
<appender-ref ref="STDOUT" />
Expand Down

0 comments on commit be7ab2e

Please sign in to comment.