views:

160

answers:

1

I need a web interface for configure log4j that gives me:

  • CRUD of loggers, appenders and filters
  • when I am OK with the configuration I want to click and download an xml version of the configuration
  • hierarchical view of the configured loggers which expands as needed (nice to have).

I am aware of this old thread but I can't find the log4j-sandbox nor the ConfigurationServlet they were talking about.

+1  A: 

The above mentioned files you can find here (ConfigurationServlet) and here (log4j-sandbox). Hope it helps.

Don't know myself of any log4j configuration generator. This blog entry has some kind of web interface you are partly looking for, but it's designed for SLF4J and Logback, the successor of log4j.

MicSim