Show only two decimals in time to generate pages
no need to display 10 decimals. it feels up my screen with useless numbers! ;-p
This commit is contained in:
parent
90370c0d0b
commit
dbc8530068
|
@ -57,7 +57,7 @@ module Jekyll
|
||||||
Jekyll.logger.info "Incremental build:", (full_build ? "disabled" : "enabled")
|
Jekyll.logger.info "Incremental build:", (full_build ? "disabled" : "enabled")
|
||||||
Jekyll.logger.info "Generating..."
|
Jekyll.logger.info "Generating..."
|
||||||
process_site(site)
|
process_site(site)
|
||||||
Jekyll.logger.info "", "done in #{Time.now - t} seconds."
|
Jekyll.logger.info "", "done in #{(Time.now - t).round 2} seconds."
|
||||||
end
|
end
|
||||||
|
|
||||||
# Private: Watch for file changes and rebuild the site.
|
# Private: Watch for file changes and rebuild the site.
|
||||||
|
|
Loading…
Reference in New Issue