IsDev returns whether the app is in dev mode. When enabled logs, executed sql statements, etc. are printed to the stderr.
()
| 592 | // |
| 593 | // When enabled logs, executed sql statements, etc. are printed to the stderr. |
| 594 | func (app *BaseApp) IsDev() bool { |
| 595 | return app.config.IsDev |
| 596 | } |
| 597 | |
| 598 | // Settings returns the loaded app settings. |
| 599 | func (app *BaseApp) Settings() *Settings { |
no outgoing calls