Skip to content

Commit

Permalink
Support debug in Blacksmith configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
jhunt committed Sep 25, 2018
1 parent 5649767 commit 577605a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ci/release_notes.md
@@ -0,0 +1,5 @@
# Bug Fixes

- The `debug` configuration option now has the same effect as
setting the `DEBUG` environment variable; vis-a-vis debugging
output is enabled.
3 changes: 3 additions & 0 deletions main.go
Expand Up @@ -32,6 +32,9 @@ func main() {
if err != nil {
log.Fatal(err)
}
if config.Debug {
Debugging = true
}

l := Logger.Wrap("*")

Expand Down

0 comments on commit 577605a

Please sign in to comment.