lib

Core libraries for Radroots
git clone https://radroots.dev/git/lib.git
Log | Files | Refs | README | LICENSE

commit 9cf007f0f252486273ca5f1c1cf28a53128e9328
parent 91ecd366dc15920f6103a08679e425cffec503d9
Author: triesap <tyson@radroots.org>
Date:   Fri, 10 Apr 2026 00:54:59 +0000

log: update metadata

Diffstat:
Mcrates/log/Cargo.toml | 4++--
Acrates/log/README | 22++++++++++++++++++++++
Dcrates/log/README.md | 14--------------
3 files changed, 24 insertions(+), 16 deletions(-)

diff --git a/crates/log/Cargo.toml b/crates/log/Cargo.toml @@ -7,11 +7,11 @@ authors = [ ] rust-version.workspace = true license.workspace = true -description = "tracing-based logging primitives for radroots runtime crates" +description = "Tracing-oriented logging primitives and initializers" repository.workspace = true homepage.workspace = true documentation = "https://docs.rs/radroots_log" -readme.workspace = true +readme = "README" [features] default = ["std"] diff --git a/crates/log/README b/crates/log/README @@ -0,0 +1,22 @@ +# radroots_log + +This is the README for `radroots_log`, which provides tracing-oriented logging +primitives for the `radroots` core libraries. + +## Overview + + * basic `log_info`, `log_error`, and `log_debug` helpers available across + builds; + * typed error and result definitions for logging initialization paths; + * `std` initializers for default, stdout, and file-backed tracing setups; + * optional chrono- and tracing-subscriber-based formatting and rotation + support through feature gates. + +## Copyright + +Except as otherwise noted, all files in the `radroots_log` distribution are + + Copyright (c) 2020-2026 Tyson Lupul + +For information on usage and redistribution, and for a DISCLAIMER OF ALL +WARRANTIES, see LICENSE included in the `radroots_log` distribution. diff --git a/crates/log/README.md b/crates/log/README.md @@ -1,14 +0,0 @@ -# radroots_log - -Tracing logging primitives for the Rad Roots SDK. - -## Goals - -- define stable logging and initialization interfaces for runtime crates -- keep logging behavior deterministic across std and no_std targets -- support tracing integration for application and service surfaces -- provide reusable logging primitives for higher-level Rad Roots crates - -## License - -Licensed under AGPL-3.0. See LICENSE.