From 40b824255497aee0e435a7cb8fae55548d9cc700 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 11 Apr 2015 17:46:54 -0400 Subject: site: Tweak log output when building. * haunt/site.scm (build-site): Change log message text. --- haunt/site.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/haunt/site.scm b/haunt/site.scm index e686ecf..23bc6d4 100644 --- a/haunt/site.scm +++ b/haunt/site.scm @@ -76,7 +76,6 @@ BUILDERS: A list of procedures for building pages from posts" (build-dir (absolute-file-name (site-build-directory site)))) (clean-directory build-dir) (for-each (lambda (page) - (format #t "writing ~a" (page-file-name page)) - (write-page page build-dir) - (format #t " ✓~%")) + (format #t "writing '~a'~%" (page-file-name page)) + (write-page page build-dir)) (flat-map (cut <> site posts) (site-builders site))))) -- cgit v1.2.3