7max / log4cl

Common Lisp logging framework, modeled after Log4J
Apache License 2.0
103 stars 32 forks source link

error in format-time on LispWorks #1

Closed tuscland closed 12 years ago

tuscland commented 12 years ago

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!

7max commented 12 years ago

Fixed, test suite now passes on LispWorks (tested on Linux Personal Edition)

tuscland commented 12 years ago

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: https://github.com/7max/log4cl/issues/1#issuecomment-4558807