Skip to content

Commit

Permalink
akashd: log at info level
Browse files Browse the repository at this point in the history
refs #363
  • Loading branch information
boz committed Nov 9, 2018
1 parent eded57a commit 65c497c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions cmd/akashd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,9 @@ func doStartCommand(session Session, cmd *cobra.Command, args []string) error {
return err
}

// logger := log.NewFilter(session.Log(), log.AllowError(),
// log.AllowDebugWith("module", "akash"))

logger := log.NewFilter(session.Log(), log.AllowDebug())
logger := log.NewFilter(session.Log(), log.AllowInfo(),
log.AllowDebugWith("module", "akash"))
// logger := log.NewFilter(session.Log(), log.AllowDebug())

applog := logger.With("module", "akash")

Expand Down

0 comments on commit 65c497c

Please sign in to comment.