---
title: "log"
description: "The log namespace — the engine's Luau API reference for log."
section: "API Reference"
slug: "api-log"
canonical: "https://origozero.ai/docs/api-log"
updated: "2026-08-22T18:22:38.078778143+00:00"
tags: ["api", "reference"]
---

# log

The `log` namespace — 4 functions.

## log/debug {#log-debug}

```lua
log.debug(...args)
```

Log a debug-level message. Concatenates all arguments with tabs.

## log/error {#log-error}

```lua
log.error(...args)
```

Log an error-level message. Concatenates all arguments with tabs.

## log/info {#log-info}

```lua
log.info(...args)
```

Log an info-level message. Concatenates all arguments with tabs.

## log/warn {#log-warn}

```lua
log.warn(...args)
```

Log a warning-level message. Concatenates all arguments with tabs.
