mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-16 13:06:40 +00:00
Print error using regular println. Fixes #146
We can't use our own logger because it hasn't been set up properly at that point.
This commit is contained in:
parent
ce05634f38
commit
2e45e4d015
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ func main() {
|
||||||
db := utils.NewDatabase()
|
db := utils.NewDatabase()
|
||||||
err := utils.DBSanityCheck(db)
|
err := utils.DBSanityCheck(db)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logger.Errorln(err)
|
fmt.Println(err)
|
||||||
|
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue