Liking cljdoc? Tell your friends :D

sentry-clj.core

A thin wrapper around the official Java library for Sentry.

A thin wrapper around the official Java library for Sentry.
raw docstring

sentry-clj.logging

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

(info "User logged in: %s" username)
(error "Database error: %s" (.getMessage ex))

Generic Logging

(log :warn "Service unavailable")
(log :error "Failed operation: %s" operation-name)

Structured Logging

(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")
```
raw docstring

sentry-clj.ring

Ring utility functions.

Ring utility functions.
raw docstring

cljdoc builds & hosts documentation for Clojure/Script libraries

Keyboard shortcuts
Ctrl+kJump to recent docs
Move to previous article
Move to next article
Ctrl+/Jump to the search field
× close