To send specific logs to Syslog, we can add a logger with the relevant class, stating the SYSLOG appender. For instance, to send the artifactory-request.log, we can add the following logger:
To send the artifactory-access.log, we can add the following logger:
To send the artifactory-request-out.log logs, we can add the following logger:
<logger name="org.artifactory.traffic.RequestLogger" additivity="true"> <level value="info" /> <appender-ref ref="SYSLOG" /> </logger>
To send the artifactory-access.log, we can add the following logger:
<logger name="org.artifactory.security.AccessLogger" additivity="true"> <level value="info"/> <appender-ref ref="SYSLOG"/> </logger>
To send the artifactory-request-out.log logs, we can add the following logger:
<logger name="org.artifactory.traffic.OutboundRequestLogger" additivity="true"> <level value="info"/> <appender-ref ref="SYSLOG"/> </logger>