---
title: "Configuration Example"
description: "Review an example of configuration for JUL."
url: https://docs.sentry.io/platforms/java/guides/jul/configuration/configuration-example/
---

# Configuration Example | Sentry for java.util.logging

Configuration options common to all Java integrations like `environment` and `release` can be configured through environment variables, system properties or `sentry.properties` file. [See the configuration page](https://docs.sentry.io/platforms/java/guides/jul/configuration/options.md) for an in-depth explanation of each property.

Configuration options specific to `java.util.logging` integration can be configured in `logging.properties` file:

```properties
io.sentry.jul.SentryHandler.level=CONFIG
io.sentry.jul.SentryHandler.minimumEventLevel=INFO
io.sentry.jul.SentryHandler.minimumBreadcrumbLevel=CONFIG
io.sentry.jul.SentryHandler.printfStyle=true
```
