mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-26 19:21:44 +00:00
change logger to log15
This commit is contained in:
@ -5,11 +5,7 @@ import (
|
||||
"os"
|
||||
)
|
||||
|
||||
func Panicf(s string, args ...interface{}) {
|
||||
panic(fmt.Sprintf(s, args...))
|
||||
}
|
||||
|
||||
func Exitf(s string, args ...interface{}) {
|
||||
fmt.Printf(s+"\n", args...)
|
||||
func Exit(s string) {
|
||||
fmt.Printf(s)
|
||||
os.Exit(1)
|
||||
}
|
||||
|
Reference in New Issue
Block a user