1
0
mirror of https://github.com/labstack/echo.git synced 2024-12-24 20:14:31 +02:00

Revert "closes #605", closes #606

This reverts commit eed456ee87.
This commit is contained in:
Vishal Rana 2016-07-27 09:04:41 -07:00
parent eed456ee87
commit a75cbc85f8

View File

@ -309,9 +309,10 @@ func (e *Echo) SetRenderer(r Renderer) {
e.renderer = r
}
// SetDebug enables/disables debug mode.
// SetDebug enable/disable debug mode.
func (e *Echo) SetDebug(on bool) {
e.debug = on
e.SetLogLevel(glog.DEBUG)
}
// Debug returns debug mode (enabled or disabled).
@ -569,7 +570,6 @@ func (e *Echo) Run(s engine.Server) {
s.SetHandler(e)
s.SetLogger(e.logger)
if e.Debug() {
e.SetLogLevel(glog.DEBUG)
e.logger.Debug("running in debug mode")
}
e.logger.Error(s.Start())