gomobile: fix empty geth.log (#1396)

This commit is contained in:
Igor Mandrigin 2019-02-26 10:47:23 +01:00 committed by GitHub
parent 0282f481bf
commit f47187b00b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
0.23.0-beta.4
0.23.0-beta.5

View File

@ -46,7 +46,7 @@ func StartNode(configJSON string) string {
return makeJSONResponse(err)
}
if err := logutils.OverrideRootLog(true, "INFO", "", true); err != nil {
if err := logutils.OverrideRootLog(true, config.LogLevel, config.LogFile, true); err != nil {
return makeJSONResponse(err)
}