use more logger

candidate-v2.0
Matthew Butterick 6 years ago
parent bcfdddc59a
commit ddd9ae3798

@ -74,11 +74,11 @@ version print the version" (current-server-port) (make-publish-di
(displayln (dynamic-require 'pollen/private/version 'pollen:version))) (displayln (dynamic-require 'pollen/private/version 'pollen:version)))
(define (handle-reset directory-maybe) (define (handle-reset directory-maybe)
(displayln "resetting cache ...") (message "resetting cache ...")
((dynamic-require 'pollen/cache 'reset-cache) directory-maybe)) ((dynamic-require 'pollen/cache 'reset-cache) directory-maybe))
(define (handle-setup directory-maybe) (define (handle-setup directory-maybe)
(displayln "preheating cache ...") (message "preheating cache ...")
((dynamic-require 'pollen/private/preheat-cache 'preheat-cache) directory-maybe)) ((dynamic-require 'pollen/private/preheat-cache 'preheat-cache) directory-maybe))
(define (handle-render) (define (handle-render)
@ -116,10 +116,10 @@ version print the version" (current-server-port) (make-publish-di
(map very-nice-path (map very-nice-path
(cond (cond
[(null? static-pagetrees) [(null? static-pagetrees)
(displayln (format "rendering generated pagetree for directory ~a" dir)) (message (format "rendering generated pagetree for directory ~a" dir))
(cdr (make-project-pagetree dir))] (cdr (make-project-pagetree dir))]
[else [else
(displayln (format "rendering preproc & pagetree files in directory ~a" dir)) (message (format "rendering preproc & pagetree files in directory ~a" dir))
(append preprocs static-pagetrees)]))) (append preprocs static-pagetrees)])))
(apply render-batch batch-to-render) (apply render-batch batch-to-render)
(when (render-with-subdirs?) (when (render-with-subdirs?)
@ -128,7 +128,7 @@ version print the version" (current-server-port) (make-publish-di
(not (omitted-path? path)))) (not (omitted-path? path))))
(render-one-dir (->complete-path path))))))] (render-one-dir (->complete-path path))))))]
[path-args ;; path mode [path-args ;; path mode
(displayln (format "rendering ~a" (string-join (map ->string path-args) " "))) (message (format "rendering ~a" (string-join (map ->string path-args) " ")))
(apply render-batch (map very-nice-path path-args))])))) (apply render-batch (map very-nice-path path-args))]))))
(define (handle-start) (define (handle-start)
@ -211,8 +211,7 @@ version print the version" (current-server-port) (make-publish-di
(when (equal? dest-dir (current-directory)) (when (equal? dest-dir (current-directory))
(error 'publish "aborted because destination directory for publishing (~a) can't be the same as current directory (~a)" dest-dir (current-directory))) (error 'publish "aborted because destination directory for publishing (~a) can't be the same as current directory (~a)" dest-dir (current-directory)))
(display (format "publishing from ~a " source-dir)) (message (string-append (format "publishing from ~a to ~a ..." source-dir dest-dir)))
(displayln (format "to ~a ..." dest-dir))
(define do-publish-operation? (define do-publish-operation?
(or (not (directory-exists? dest-dir)) (or (not (directory-exists? dest-dir))
(force-target-overwrite?) (force-target-overwrite?)
@ -234,8 +233,8 @@ version print the version" (current-server-port) (make-publish-di
(define (delete-from-publish-dir? p) (define (delete-from-publish-dir? p)
(and (omitted-path? p) (not (extra-path? p)))) (and (omitted-path? p) (not (extra-path? p))))
(for-each delete-it! (find-files delete-from-publish-dir? dest-dir))) (for-each delete-it! (find-files delete-from-publish-dir? dest-dir)))
(displayln "publish completed")] (message "publish completed")]
[else (displayln "publish aborted")])) [else (message "publish aborted")]))
(define (handle-unknown command) (define (handle-unknown command)
(match command (match command

@ -1 +1 @@
1543185303 1543680113

Loading…
Cancel
Save