Live streaming
By default,jelou functions logs streams logs in real time:
Historical logs
Write logs from your function
console.log() also works but ctx.log() adds useful metadata (requestId, function, company, timestamp) automatically.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Monitor your functions with jelou functions logs, ctx.log() for structured logging, and jelou functions cron logs for cron executions.
jelou functions logs streams logs in real time:
jelou functions logs my-function
# ▸ Streaming logs for my-function
# ▸ Press Ctrl+C to stop
jelou functions logs my-function --history
ctx.log("Processing order", { phone: input.phone, requestId: ctx.requestId });
// Writes structured JSON: { requestId, function, company, timestamp, args }
console.log() also works but ctx.log() adds useful metadata (requestId, function, company, timestamp) automatically.jelou functions cron logs my-function
jelou functions cron logs my-function --state ERROR
jelou functions logs my-function --json
jelou functions logs my-function --history --json
Was this page helpful?