1
0
mirror of https://github.com/labstack/echo.git synced 2025-01-12 01:22:21 +02:00

Fixed a typo

Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana 2017-01-15 17:11:04 -08:00
parent 093edb39ab
commit b2c623b07d

View File

@ -576,7 +576,7 @@ func (e *Echo) StartServer(s *http.Server) error {
if e.Listener == nil {
e.Listener = tcpKeepAliveListener{l.(*net.TCPListener)}
}
e.colorer.Printf("⇛ https server started on %s\n", e.colorer.Green(s.Addr))
e.colorer.Printf("⇛ http server started on %s\n", e.colorer.Green(s.Addr))
return s.Serve(e.Listener)
}
if e.TLSListener == nil {