Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
Signed-off-by: Vishal Rana <vr@labstack.com>
  • Loading branch information
vishr committed Nov 22, 2016
1 parent fe269b3 commit cd2530e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions echo.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import (
"errors"
"fmt"
"io"
slog "log"
"log"
"net/http"
"path"
"reflect"
Expand Down Expand Up @@ -546,7 +546,7 @@ func (e *Echo) StartServer(s *http.Server) error {
gs := &graceful.Server{
Server: s,
Timeout: e.ShutdownTimeout,
Logger: slog.New(e.Logger.Output(), e.Logger.Prefix()+": ", 0),
Logger: log.New(e.Logger.Output(), e.Logger.Prefix()+": ", 0),
}
if s.TLSConfig == nil {
e.server = gs
Expand Down
2 changes: 1 addition & 1 deletion glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion website/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h2>{{ .Site.Data.index.h2 }}</h2>
<div class="features">
{{ range .Site.Data.index.features }}
<div class="feature">
<img src="/images/{{ .icon }}.svg">
<img src="https://cdn.labstack.com/images/icons/{{ .icon }}.svg">
<h3>
{{ .title }}
</h3>
Expand Down

0 comments on commit cd2530e

Please sign in to comment.