Usage
.app.jsonc file to determine which app to fetch logs for. There’s no flag to specify an app ID directly, so if you manage multiple projects, navigate to the correct one first.
Flags
| Flag | Description |
|---|---|
--function <names> | Filter by function name. Accepts a comma-separated list. If omitted, fetches logs for all project functions. |
--since <datetime> | Show logs from this time onward. Accepts ISO 8601 format. |
--until <datetime> | Show logs up to this time. Accepts ISO 8601 format. |
-n, --limit <n> | Maximum number of results to return, between 1 and 1000. Defaults to 50. |
--order <order> | Sort order: asc or desc. Defaults to desc. |
Output format
The output is a list of log entries sorted by time. Each entry shows the timestamp, level, function name in brackets, and log message. For example:| Console method | Log level |
|---|---|
console.log | INFO |
console.info | INFO |
console.error | ERROR |
console.warn | WARNING |
console.debug | DEBUG |
See also
- Backend Functions: Learn about serverless functions
deploy: Deploy all project resources to Base44functions deploy: Deploy local functions to Base44

