error in format-time on LispWorks
tuscland opened this issue · 2 comments
Because there is a small error in format-time, log4cl does not output anything all on LispWorks.
In pattern-layout.lisp, the call to decode-universal-time is:
(decode-universal-time ut (if utc-p 0))
When utc-p is nil, decode-universal-time is called with the wrong timezone.
I temporarily fixed this issue by removing the if form:
(decode-universal-time ut 0)
log4cl now works for me.
Thanks for this fine library!
Fixed, test suite now passes on LispWorks (tested on Linux Personal Edition)
Thank you Max, and congrats for the library.
Camille
On 18 mars 2012, at 03:17, Max Mikhanoshareply@reply.github.com wrote:
Fixed, test suite now passes on LispWorks (tested on Linux Personal Edition)
Reply to this email directly or view it on GitHub:
#1 (comment)