hi,
i am developing a library which logs stuff (with log4j). the library has no main entry point (static main(
String[] args) and it is not deployed as web archive or similar so there is no possibility where it can be loaded with a kind of init-Servlet.
so i think of two possibilities:
1) loading configs somewhere in library (which seems to be ugly to me).
2) tell the library user to include log4jxxx.jar and load its settings up somewhere in his code and log4j.properties.
are there more possibilities?