Lösung
Hallo Albert,
Das geht ohne Probleme.
Gruss, Simon
Tracing and logging support
Tracing is a facility to redirect any output in the Java Console to a trace file (.plugin.trace).
-Djavaplugin.trace=true
-Djavaplugin.trace.option=basic|net|security|ext|liveconnect
If you do not want to use the default trace file name:
-Djavaplugin.trace.filename=
Similar to tracing, logging is a facility to redirect any output in the Java Console to a log file (.plugin.log) using the Java Logging API. Logging can be turned on by enabling the property javaplugin.logging.
-Djavaplugin.logging=true
If you do not want to use the default log file name, enter:
-Djavaplugin.log.filename=
Furthermore, if you do not want to overwrite the trace and log files each session, you can set the property:
-Djavaplugin.outputfiles.overwrite=false.
If the property is set to false, then trace and log files will be uniquely named for each session. If the default trace and log file names are used, then the files would be named as follows
.plugin.trace
.plugin.log
Tracing and logging set through the Control Panel will take effect when the Plug-in is launched, but changes made through the Control Panel while a Plug-in is running will have no effect until a restart.
For more information about tracing and logging, see the chapter called Tracing and Logging.
Quelle:
http://java.sun.com/j2se/1.4.2/docs/guide/plugin/dev…