TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/xcoder-es/media-cleaner-pro/llms.txt
Use this file to discover all available pages before exploring further.
/api/logs endpoint returns a snapshot of the pipeline’s in-memory log buffer as a JSON array. Log entries are produced by every stage of the pipeline as well as by the top-level job lifecycle ("system" stage), giving you a chronological audit trail of everything the running job has done. The buffer holds the 1000 most recent messages; once full, the oldest entry is discarded to make room for each new one.
The log buffer is scoped to the lifetime of the running server process. Restarting the server clears all log history. If you need persistent logs, write them to disk or forward them to an external log sink as they arrive.
Response fields
The endpoint returns a JSON array. Each element is aLogMessage object with the following fields:
ISO 8601 / RFC 3339 timestamp recording when the log entry was created, e.g.
"2024-06-01T10:23:45.123Z". Always in UTC.Severity of the log entry. One of:
"INFO"— normal operational messages."WARN"— unexpected but recoverable conditions."ERROR"— failures that caused a file to be skipped or a stage to fail.
Name of the pipeline stage that emitted the message, matching the
name field on the corresponding StageInfo object. Top-level lifecycle events (job start, job finish, cancellation) use the value "system".Human-readable description of the event or error.