Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
wsargent committed Aug 8, 2020
1 parent 69e8af6 commit 1d4d473
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ These correspond to the honeycomb appender in `conf/logback.xml`

Assuming you have sbt and java installed:

```scala
```
sbt run
```

Expand Down
2 changes: 1 addition & 1 deletion app/controllers/HomeController.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class HomeController @Inject() (val controllerComponents: ControllerComponents)
def index(): Action[AnyContent] = Action { implicit request: Request[AnyContent] =>
implicit val logger: Logger = getLogger(request)

val traceLogger = logger.onCondition(traceCondition).withMarker(tracerMarker)
val traceLogger = logger.withCondition(traceCondition).withMarker(tracerMarker)
traceLogger.trace { log =>
log(st"The query string contains ${bobj("queryString" -> request.queryString)}")
}
Expand Down

0 comments on commit 1d4d473

Please sign in to comment.