Skip to content

Commit cd2530e

Browse files
committed
updated docs
Signed-off-by: Vishal Rana <vr@labstack.com>
1 parent fe269b3 commit cd2530e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

echo.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import (
4242
"errors"
4343
"fmt"
4444
"io"
45-
slog "log"
45+
"log"
4646
"net/http"
4747
"path"
4848
"reflect"
@@ -546,7 +546,7 @@ func (e *Echo) StartServer(s *http.Server) error {
546546
gs := &graceful.Server{
547547
Server: s,
548548
Timeout: e.ShutdownTimeout,
549-
Logger: slog.New(e.Logger.Output(), e.Logger.Prefix()+": ", 0),
549+
Logger: log.New(e.Logger.Output(), e.Logger.Prefix()+": ", 0),
550550
}
551551
if s.TLSConfig == nil {
552552
e.server = gs

glide.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/layouts/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h2>{{ .Site.Data.index.h2 }}</h2>
2424
<div class="features">
2525
{{ range .Site.Data.index.features }}
2626
<div class="feature">
27-
<img src="/images/{{ .icon }}.svg">
27+
<img src="https://cdn.labstack.com/images/icons/{{ .icon }}.svg">
2828
<h3>
2929
{{ .title }}
3030
</h3>

0 commit comments

Comments
 (0)