Hi,
Oxygen does not store log files by default but you can enable full debug logging in Oxygen if you want:
https://www.oxygenxml.com/doc/versions/ ... -form.html
So if you create a file named "log4j.properties" with the content:
Code: Select all
log4j.rootCategory= debug, R2
log4j.appender.R2=org.apache.log4j.RollingFileAppender
log4j.appender.R2.File=${user.home}/Desktop/oxygenLog/oxygen.log
log4j.appender.R2.MaxFileSize=12000KB
log4j.appender.R2.MaxBackupIndex=20
log4j.appender.R2.layout=org.apache.log4j.PatternLayout
log4j.appender.R2.layout.ConversionPattern=%r %p [ %t ] %c - %m%n
and you place it in the Oxygen installation folder, restart Oxygen on your Desktop there should appear an "oxygenLog" file containing logging information. It is a rolling file appender, meaning that the most recent log information is in the "oxygen.log" file, and it's also configured not to overpass 12MBs of log.
After you reproduce the freeze problem and force close Oxygen in those log files you can search for lines like
Thread "AWT-EventQueue-0" as we have an utility dumping the stack traces of all threads from time to time.
Or you can zip and send us the "oxygenLog" to
support@oxygenxml.com, then we'll look into that on our side.
One more thing, keeping the logging always on makes the application run slower, so once you get the details that you want, you can delete the "log4j.properties" and restart Oxygen.
Regards,
Radu