A thin wrapper around the official Java library for Sentry.
A thin wrapper around the official Java library for Sentry.
Structured logging integration with Sentry.
Provides logging functions at all standard levels:
trace, debug, info, warn, error, fatal - Level-specific logging functionslog - Generic logging function accepting level as parameter, supports structured logging with maps(info "User logged in: %s" username)
(error "Database error: %s" (.getMessage ex))
(log :warn "Service unavailable")
(log :error "Failed operation: %s" operation-name)
(log :fatal
{:user-id "123" :operation "payment" :critical true}
"Critical system failure")
Structured logging integration with Sentry.
Provides logging functions at all standard levels:
- `trace`, `debug`, `info`, `warn`, `error`, `fatal` - Level-specific logging functions
- `log` - Generic logging function accepting level as parameter, supports structured logging with maps
## Basic Usage
```clojure
(info "User logged in: %s" username)
(error "Database error: %s" (.getMessage ex))
```
## Generic Logging
```clojure
(log :warn "Service unavailable")
(log :error "Failed operation: %s" operation-name)
```
## Structured Logging
```clojure
(log :fatal
{:user-id "123" :operation "payment" :critical true}
"Critical system failure")
```Ring utility functions.
Ring utility functions.
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |