tana-stdio 0.1.3

Terminal output utilities for Tana projects
Documentation
  • Coverage
  • 88.46%
    23 out of 26 items documented12 out of 21 items with examples
  • Size
  • Source code size: 8.32 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.03 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • tananetwork/tana-stdio
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • samifouad

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 only
  • info - Default (startup + important messages)
  • debug - Verbose output