Sat Jun 18 23:15:27 UTC 2011 pix@kepibu.org
* Print when we start and stop a run.
hunk ./claki.lisp 228
+(defun now () (local-time:format-timestring nil (local-time:now) :format +simple-time+))
hunk ./claki.lisp 231
- (dotimes (i 20)
+ (format t "; Beginning run at ~a~%" (now))
+ (dotimes (i (* 2 24))
hunk ./claki.lisp 234
- (format t "; Unattented run at ~a~%" (local-time:format-timestring nil (local-time:now) :format +simple-time+))
+ (format t "; Unattended run at ~a~%" (now))
hunk ./claki.lisp 236
- (save-state)))
+ (save-state))
+ (format t "; Run ended at ~a~%~%" (now)))