pandora-kit 0.3.1

Interactive TUI toolkit for the Hefesto framework
# pandora log — Colored Log Line

Prints a formatted, colored log line to stdout.

## Usage

```
pandora log <LEVEL> <MESSAGE>...
```

## Levels

| Level    | Color    | Description                        |
|----------|----------|------------------------------------|
| `info`   | Cyan     | General information                |
| `warn`   | Yellow   | Warning message                    |
| `error`  | Red      | Error message                      |
| `debug`  | Gray     | Debug information                  |

## Examples

```bash
pandora log info "Iniciando compilación"
pandora log error "Falló la conexión"
pandora log warn "Archivo no encontrado"
pandora log debug "x = 42"
```