You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tend to do print-debugging until something goes real wrong. So when I'm writing a shortcode or template file, I do a lot of hugo server ... and see a lot of
hugo server -D
Building sites … WARN 2020/08/19 23:45:42 warn: this is debug message 0
WARN 2020/08/19 23:45:42 warn: this is debug message 1
WARN 2020/08/19 23:45:42 warn: this is debug message 2
| EN
-------------------+-----
Pages | 28
Paginator pages | 1
Non-page files | 0
Static files | 1
Processed images | 2
Aliases | 4
Sitemaps | 1
Cleaned | 0
Built in 1698 ms
Watching for changes in /home/jeff/code/website.com/{archetypes,assets,content,data,i18n,static,themes}
Watching for config changes in /home/jeff/code/website.com/config.toml
Environment: "development"
Serving pages from /home/jeff/code/website.com/public
Web Server is available at http://localhost:1313/ (bind address 127.0.0.1)
This means a lot of the time I miss the very first line -- on the same line as Building Sites ..., so I was thinking we could add a newline afterwards?
hugo server -D
Building sites …
WARN 2020/08/19 23:45:42 warn: this is debug message 0
WARN 2020/08/19 23:45:42 warn: this is debug message 1
WARN 2020/08/19 23:45:42 warn: this is debug message 2
It's a small nit-pick and I'm issuing a PR for it in a sec. Maybe there's some reason this hasn't been done, but otherwise it would at least be a tiny bit easier to read. Thoughts?
The text was updated successfully, but these errors were encountered:
Hey there,
I tend to do print-debugging until something goes real wrong. So when I'm writing a shortcode or template file, I do a lot of
hugo server ...
and see a lot ofThis means a lot of the time I miss the very first line -- on the same line as
Building Sites ...
, so I was thinking we could add a newline afterwards?It's a small nit-pick and I'm issuing a PR for it in a sec. Maybe there's some reason this hasn't been done, but otherwise it would at least be a tiny bit easier to read. Thoughts?
The text was updated successfully, but these errors were encountered: