We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 959f4bd commit 6430299Copy full SHA for 6430299
context.go
@@ -179,5 +179,6 @@ func (c *Context) Error(err error) {
179
func (c *Context) reset(r *http.Request, w http.ResponseWriter, e *Echo) {
180
c.request = r
181
c.response.reset(w)
182
+ c.query = nil
183
c.echo = e
184
}
echo.go
@@ -158,7 +158,7 @@ func New() (e *Echo) {
158
//----------
159
160
if runtime.GOOS == "windows" {
161
- color.Disable()
+ e.DisableColoredLog()
162
163
e.HTTP2(false)
164
e.notFoundHandler = func(c *Context) error {
0 commit comments