Module log

Module log 

Source
Expand description

Structured logging functionality with multiple severity levels.

This module provides the core logging infrastructure for the telemetry system. It supports structured logging with key-value attributes and automatically correlates log messages with active spans when available.

§Severity Levels

The logging system supports multiple severity levels:

§Examples

veecle_telemetry::info!("Operation completed", {
    "duration_ms" = 150,
    "success" = true
});