logging-list
Retrieve recent log entries from Simplifier with filtering by log level and time range. Access debug, info, warning, error, or critical logs using pagination and timestamp parameters.
Instructions
Get recent log entries from Simplifier
This tool provides access to the Simplifier logging system. You can filter logs by level and time range. If no filters are used, it returns the 50 most recent log entries. If you are expecting to find some logs but they are missing, ask the user to check whether logging for execution is set to the right level in the Simplifier server settings.
Log Levels:
0 = Debug
1 = Info
2 = Warning
3 = Error
4 = Critical
Parameters:
pageSize: number of log entries to return in one request, defaults to 50.
page: if more than "pageSize" entries are available, this can be used for accessing later pages. Starts at 0, defaults to 0.
logLevel: Filter by minimum log level (0-4)
since: ISO timestamp for entries since this time
from/until: ISO timestamps for a time range (must be used together)
Examples:
Default: Get 50 most recent entries
logLevel=3: Only errors and critical
since="2025-01-01T00:00:00Z": Entries since date
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pageSize | No | Number of log entries to return, defaults to 50 | |
| page | No | Page number for pagination, starts at 0 | |
| logLevel | No | Filter by minimum log level (0=Debug, 1=Info, 2=Warning, 3=Error, 4=Critical) | |
| since | No | ISO timestamp - get entries since this time | |
| from | No | ISO timestamp - start of time range (must be used with until) | |
| until | No | ISO timestamp - end of time range (must be used with from) |