2 releases
| 0.1.4 | Dec 12, 2025 |
|---|---|
| 0.1.3 | Dec 5, 2025 |
#607 in Command-line interface
9KB
125 lines
tana-stdio
Terminal output utilities for Tana projects. Consistent formatting across CLI, services, and tools.
Format
[action] message
Usage
use tana_stdio::{log, error, warn, success, fail};
log("build", "compiling contract...");
success("build complete");
error("build", "compilation failed");
Log Levels
Control output with LOG_LEVEL environment variable:
error- Errors onlyinfo- Default (startup + important messages)debug- Verbose output