Skip to content

Commit

Permalink
Merge pull request #363 from Felixzz/master
Browse files Browse the repository at this point in the history
Fix some coding style & spelling issues
  • Loading branch information
ceki committed Feb 26, 2017
2 parents 6f67c88 + f742961 commit cdc7e44
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -24,7 +24,7 @@
/**
* A minimal application making use of logback-classic. It uses the
* configuration file logback-trivial.xml which makes use of
* TivialLogbackAppender.
* TrivialLogbackAppender.
*
* @author Ceki Gülcü
*/
Expand Down
Expand Up @@ -33,10 +33,10 @@ public void start() {
}

@Override
protected void append(ILoggingEvent loggingevent) {
protected void append(ILoggingEvent loggingEvent) {
// note that AppenderBase.doAppend will invoke this method only if
// this appender was successfully started.
String eventAsStr = this.layout.doLayout(loggingevent);
String eventAsStr = this.layout.doLayout(loggingEvent);
System.out.println(eventAsStr);
}

Expand Down

0 comments on commit cdc7e44

Please sign in to comment.