arrow_back history picture_as_pdf This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ~~NOTRANS~~ ~~Title: Log4j instead of Logging API~~ If you want to use log4j or log4j2 instead of standard Java logging API for your application, simply configure the logger via config.xml of your server zone: <file xml config.xml> <?xml version="1.0" encoding="UTF-8"?> <server> <logfactory>com.sibvisions.util.log.log4j.Log4jLoggerFactory</logfactory> ... </server> </file> It's also possible to use log4j(2) for your client application. Simply set the application parameter: <file script> Launcher.logfactory </file> as command-line parameter or via application.xml. There's also a constant in javax.rad.application.ILauncher with the name PARAM_LOGFACTORY. We don't recommend other log APIs than java logging API if you start your JVx application as an Applet, because it makes deployment more complex. But it's possible if you want. \\ **<fs 20px>Note</fs>** We have sample files for log4j and log4j2 in our [[http://sourceforge.net/p/jvx/code/HEAD/tree/trunk/java/library/test/|repository]].