{% extends "sentry/partial/client_config/java_base.html" %} {% load i18n %} {% block inner %}

{% trans "You'll need to configure the SentryAppender in your logging configuration:" %}

<configuration>
    <appender name="Sentry" class="net.kencochrane.raven.logback.SentryAppender">
        <dsn>
            {% if dsn %}{{ dsn }}{% else %}SENTRY_DSN{% endif %}
        </dsn>
    </appender>

    <root level="error">
        <appender-ref ref="Sentry"/>
    </root>
</configuration>
{% endblock %}