Everything under Quiote\Logging\Sink.
| Class | Description |
|---|
AbstractStreamSink | Base for sinks that write one line per event to a stream. |
AnsiTextStreamSink | TextStreamSink that colors warning-and-above lines so they stand out in an interactive terminal: yellow = warning red = error bold red = critical/alert/emergency Debug/info/notice are left uncolored — the goal is making problems jump out, not painting every line. |
EmojiTextStreamSink | AnsiTextStreamSink with an emoji prefix per level, for local dev consoles where a quick visual scan matters more than a clean tail | grep. |
FileSink | Plain-text sink that appends one line per event to a file on disk, creating the parent directory if it doesn’t exist yet (AbstractStreamSink’s lazy fopen() would otherwise fail silently against a missing directory). |
JsonStdoutSink | Default container sink: one compact JSON object per line to stdout. |
TextStreamSink | Human-readable single-line sink for local development. |