starina_api

Module log

Source
Expand description

Logging utilities.

std::println! for Starina applications.

§Format string syntax

See std::fmt for the format syntax.

§Examples

use starina_api::prelude::*; // Import all logging macros.

info!("Hello, world!");

let answer = 42;
debug!("The answer is {}", answer);

Enums§