// Log feed

Log feed

Monospace event stream whose leading tick carries the row's severity colour.

.talos-log is a monospace event stream. Every row draws a 2px vertical tick down its left edge, and the severity modifier recolours that tick — so the level reads off the margin as colour, never as a coloured label or filled row.

Default

PREVIEW
12:04:01scheduler tick
12:04:02atlas-01 heartbeat
12:04:03queue drained
<div class="talos-log">
  <div class="talos-log__row">
    <span class="talos-log__ts">12:04:01</span>
    <span class="talos-log__msg">scheduler tick</span>
  </div>
</div>

Unmarked rows carry a neutral --talos-edge-subtle tick. __ts is the tabular-numbered timestamp (flush left, dim); __msg is the primary-coloured event text.

Severity ticks

PREVIEW
12:04:10node atlas-02 joined cluster
12:04:12deploy 9043 promoted
12:04:18load 88% — approaching ceiling
12:04:21atlas-03 unreachable
<div class="talos-log__row talos-log__row--info">…</div>
<div class="talos-log__row talos-log__row--success">…</div>
<div class="talos-log__row talos-log__row--warn">…</div>
<div class="talos-log__row talos-log__row--error">…</div>

--info paints the tick --talos-info, --success --talos-success, --warn --talos-warning, --error --talos-danger. Only the tick changes — the message text stays primary so the stream reads uniform and the level is a peripheral cue.

Feed (bordered, scrolling)

PREVIEW
12:04:10node atlas-02 joined cluster
12:04:11rebalancing shards
12:04:12deploy 9043 promoted
12:04:15snapshot written
12:04:18load 88% — approaching ceiling
12:04:21atlas-03 unreachable
12:04:24retry queued
<div class="talos-log talos-log--feed">
  <div class="talos-log__row talos-log__row--info">…</div>
  <div class="talos-log__row talos-log__row--error">…</div>
</div>

--feed wraps the stream in a hairline-bordered surface, caps it at 18rem, and scrolls overflow — the bounded console for a live tail.

Classes

ClassEffect
.talos-logmonospace stream container
.talos-log--feedbordered surface, max-height 18rem, scrolls overflow
.talos-log__rowone event row with a leading severity tick
.talos-log__tstabular timestamp, dim, flush left
.talos-log__msgprimary-coloured event text
.talos-log__row--infotick → --talos-info
.talos-log__row--warntick → --talos-warning
.talos-log__row--errortick → --talos-danger
.talos-log__row--successtick → --talos-success