Skip to content

Insight SAP logging file (SAP)

To get the debug log of the Insight SAP connector you have to configure an additional log file in standalone.xml.

    ...
   <profile>
        <subsystem xmlns="urn:jboss:domain:logging:3.0">
            ....
            <size-rotating-file-handler name="INSIGHT-SAP" autoflush="true">
                <formatter>
                    <named-formatter name="PATTERN"/>
                </formatter>
                <file relative-to="jboss.server.log.dir" path="insight-sap.log"/>
                <rotate-size value="10m"/>
                <max-backup-index value="10"/>
                <append value="true"/>
            </size-rotating-file-handler>
            <logger category="gis.insight.sap" use-parent-handlers="false">
                <level name="DEBUG"/>
                <handlers>
                    <handler name="INSIGHT-SAP"/>
                </handlers>
            </logger>
     ...