mirror of
https://github.com/astaxie/beego.git
synced 2024-11-16 15:00:55 +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)
|
||||
|
||||
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
|
||||
ac := config.NewFakeConfig()
|
||||
AppConfig = &beegoAppConfig{ac}
|
||||
}
|
||||
Warning(err)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user