Logger
The logger provider performs no network request.
Target format
Section titled “Target format”logger://[?level=<debug|info|warn|error>]import { send } from 'statocysts'
await send('logger://?level=warn', { title: 'Queue delayed', body: 'The oldest job is five minutes old.',})level defaults to info and selects the matching console method.
Output
Section titled “Output”[statocysts] Queue delayedThe oldest job is five minutes old.The title is prefixed with [statocysts]; the optional body appears on the next line.
The logger provider has no provider-specific options.