All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.spring.logging.logback-appender.xml Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version
<?xml version="1.0" encoding="UTF-8"?>

<!--
Stackdriver appender logback configuration provided for import.
-->

<included>
  <property name="STACKDRIVER_LOG_NAME" value="${STACKDRIVER_LOG_NAME:-spring.log}"/>
  <property name="STACKDRIVER_LOG_FLUSH_LEVEL" value="${STACKDRIVER_LOG_FLUSH_LEVEL:-OFF}"/>

  <appender name="STACKDRIVER" class="com.google.cloud.spring.logging.LoggingAppender">
    <log>${STACKDRIVER_LOG_NAME}</log> <!-- Optional : default spring.log -->
    <loggingEventEnhancer>com.google.cloud.spring.logging.TraceIdLoggingEnhancer</loggingEventEnhancer>
    <flushLevel>${STACKDRIVER_LOG_FLUSH_LEVEL}</flushLevel> <!-- Optional : default OFF -->
  </appender>
</included>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy