cmd/mist: use utils.SetupLogger

This commit is contained in:
Felix Lange 2015-05-27 13:34:14 +02:00
parent 3b9808f23c
commit 62671c93c4
1 changed files with 4 additions and 0 deletions

View File

@ -86,6 +86,10 @@ func init() {
utils.BlockchainVersionFlag,
utils.NetworkIdFlag,
}
app.Before = func(ctx *cli.Context) error {
utils.SetupLogger(ctx)
return nil
}
}
func main() {