Process application custom logging

Enable custom logging to redirect script log messages to unique files for easier troubleshooting and debugging of your process applications in Business Automation Workflow.

About this task

In the <process-apps-logging-config/> section of 100custom.xml, you can configure the fields that control process application logging, including the base file path where separate log files are created and whether the global fallback logger is enabled. The base file path is required for both per-process-application log files and the global fallback logger.

<common merge="mergeChildren">
        <process-apps-logging-config merge="mergeChildren">
            <base-file-path merge="replace">C:\TestLog</base-file-path>
            <log-file-size merge="replace">1000</log-file-size>
            <log-number-of-rollovers merge="replace">100</log-number-of-rollovers>
            <default-log-name merge="replace">PA.log</default-log-name>
            <enable-global merge="replace">true</enable-global>
        </process-apps-logging-config>
    </common>