I am specifically looking for the most up to date, modern SysLogHandler for java.util.logging.

I have found a few that date back to 2001 - 2003, mostly un-supported now.

I know that syslog is a pretty static service, I am wondering before I write something myself, if there are any newer handler implementations that support the Java 1.5 and newer features.

I am not interested in any of the other logging frameworks or wrapper / proxy libraries.

I am not looking for SLF4J or any other alternative logging frameworks, as suggested in this question.

link|improve this question

You could write some code to do it. Or use a library that can already do it. Since Java can't do it out of the box. – Adam Batkin Jun 1 '11 at 20:02
I know you're not looking for SLF4J, but I still heartily recommend it even if you'll be using util-logging underneath. – Darien Jun 1 '11 at 22:51
write it yourself, probably it'd have less time than the discussion here. I know, if I need a handler I just write it myself. java.util.logging was practically unchanged in java5, in 6_18 they made some weak reference to the loggers. – bestsss Jun 1 '11 at 23:59
feedback

1 Answer

up vote 1 down vote accepted

In an old job, I used the Syslog4j library and wired up a custom Log4j-appender for it, so you can probably do something similar by implementing a custom java.util.logging.Handler that passes messages along.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.