Use utils logging
[candle] / src / main / aws / aws.lisp
index 2913d3244492dc5f9ca8c259c2ad4a8eff6c521b..4182c6728fa130063bcc47ab024befc4ce152345 100644 (file)
@@ -26,7 +26,7 @@
    (values-list retn))))
 
 (defun start-shutdown-thread ()
- (format t "Starting AWS shutdown thread~%")
+ (log:info "Starting AWS shutdown thread")
  (sb-thread:make-thread
   (lambda ()
    (loop
@@ -42,7 +42,7 @@
   :name "AWS Shutdown Thread"))
 
 (defmethod candle:shutdown-system ((job-system (eql :aws)))
- (format t "Shutting down AWS box for exit~%")
+ (log:info "Shutting down AWS box for exit")
  ; If there's a job going, we need to wait for it to finish
  (sb-thread:with-mutex (*aws-mutex*))
  (stop-aws-box))