From: Anthony Fok Date: Thu, 26 Apr 2018 20:17:42 +0000 (-0600) Subject: hugolib: Use double quotes instead of back quotes X-Git-Tag: v0.41~38 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b2b500f563c3bb36751a4c1610df113c4daad604;p=brevno-suite%2Fhugo hugolib: Use double quotes instead of back quotes so that '\n' is interpreted in the timeout warning. --- diff --git a/hugolib/page.go b/hugolib/page.go index e79b063c..7c2ac70b 100644 --- a/hugolib/page.go +++ b/hugolib/page.go @@ -305,7 +305,7 @@ func (p *Page) initContent() { select { case <-ctx.Done(): - p.s.Log.WARN.Printf(`WARNING: Timed out creating content for page %q (.Content will be empty). This is most likely a circular shortcode content loop that should be fixed. If this is just a shortcode calling a slow remote service, try to set "timeout=20000" (or higher, value is in milliseconds) in config.toml.\n`, p.pathOrTitle()) + p.s.Log.WARN.Printf("WARNING: Timed out creating content for page %q (.Content will be empty). This is most likely a circular shortcode content loop that should be fixed. If this is just a shortcode calling a slow remote service, try to set \"timeout=20000\" (or higher, value is in milliseconds) in config.toml.\n", p.pathOrTitle()) case err := <-c: if err != nil { p.s.Log.ERROR.Println(err)