Skip to content

Logs

The Logs page streams Sublarr’s server log into your browser. New lines arrive over WebSocket so you don’t have to refresh, and the last 500 entries are kept in memory for searching and scrolling. When you need to share an issue with maintainers, this is where you copy the relevant lines from.

The page is one big virtualised log viewer with a toolbar on top. The toolbar’s height is fixed so very long log lines don’t push controls off-screen.

ControlEffect
Level dropdownFilter to a minimum severity. WARNING hides INFO and DEBUG; ERROR shows only errors. ALL shows everything.
Search boxSubstring match (case-insensitive) on the entire log line.
Pause / ResumeStops live updates so the view doesn’t jump while you read.
Auto-scrollWhen enabled (default), the viewport follows new lines. Toggling off lets you scroll up to inspect history.
DownloadSaves the currently visible (filtered) lines as a .log file.

Sublarr’s logger emits four severities. The “level” you set in Settings → System is the minimum severity written to file; the page filter is independent and only narrows what you see in the browser.

LevelWhen you’d raise it to
DEBUGReproducing a bug — verbose request/response and worker traces.
INFODefault. Lifecycle events, scheduler ticks, downloads.
WARNINGProduction where you only care about deviations from the happy path.
ERRORQuiet logs — only failures land.

Sublarr tags each line with a logger name. The viewer doesn’t expose a category filter directly, but the search box does the same job:

SearchMatches
wanted_scannerWanted-list scanner ticks and decisions.
translationTranslation pipeline.
apschedulerScheduler triggers, missed firings, history writes.
werkzeugHTTP access log lines.
authLogin attempts, lockouts, API-key checks.

When opening an issue, the most useful artifact is the log around the failing action. The recipe:

  1. Set Level to DEBUG and reproduce the issue once.
  2. Pause the stream.
  3. Use Search to filter to the relevant subsystem (e.g. subdl for a SubDL provider issue).
  4. Click Download. The resulting .log already has the irrelevant lines stripped.

The same lines are appended to SUBLARR_LOG_FILE (default /config/sublarr.log in Docker). The browser viewer reads from the live tail; the on-disk file is the authoritative source if your retention is longer than the in-memory buffer of 500 lines.