mirror of
https://github.com/astaxie/beego.git
synced 2024-11-16 15:20:56 +00:00
Merge pull request #1459 from ryanchapman/develop
Log config parsing errors
This commit is contained in:
commit
5d902264e5
@ -354,10 +354,12 @@ func init() {
|
|||||||
SetLogFuncCall(true)
|
SetLogFuncCall(true)
|
||||||
|
|
||||||
err = ParseConfig()
|
err = ParseConfig()
|
||||||
if err != nil && os.IsNotExist(err) {
|
if err != nil {
|
||||||
|
if os.IsNotExist(err) {
|
||||||
// for init if doesn't have app.conf will not panic
|
// for init if doesn't have app.conf will not panic
|
||||||
ac := config.NewFakeConfig()
|
ac := config.NewFakeConfig()
|
||||||
AppConfig = &beegoAppConfig{ac}
|
AppConfig = &beegoAppConfig{ac}
|
||||||
|
}
|
||||||
Warning(err)
|
Warning(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user