Details to Submit in a Request for Technical Support Using the Online Form

Problem

What details should I add to my request for technical support on the online form in the product website?

Solution

When completing a request for Technical Support using the online form, include as many details as possible about your problem. For problems where a simple explanation may not be enough for the Technical Support team to reproduce or address the issue (such as server connection errors, unexpected delays while editing a document, an application crash, etc.), you should generate a log file and attach it to the problem report. In the case of a crash, you should also attach the crash report file generated by your operating system.

To generate an Syncro SVN Client log file, follow these steps:

  1. Create a text file called log4j.properties in the , with the following content:
    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 
  2. Restart the application.
  3. Reproduce the error.
  4. Close the application.
  5. Delete the log4j.properties file because it might cause performance issues if you leave it in the folder.

    Important

    The logging mode may severely decrease the performance of the application. Therefore, please do not forget to delete the log4j.properties file when you are done with the procedure.

The resulting log file is named oxygen#.log (for example, oxygen.log, oxygen.log.1, oxygen.log.2, etc.) and is located in the Desktop\oxygenLog folder.

Was this helpful?