Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developer.suki.ai/llms.txt

Use this file to discover all available pages before exploring further.

Overview

LogLevel type represents the available log levels for controlling debug output verbosity. The code snippet below shows how to use the LogLevel type to create a log level object.
JavaScript
type LogLevel = "debug" | "info" | "warn" | "error" | "log";

Properties

The logger respects both the enableDebug flag and logLevel setting. Messages are only output when debug mode is enabled AND the message level meets or exceeds the configured log level.
Last modified on March 23, 2026