datafold 0.1.55

A personal database for data sovereignty with AI-powered ingestion
Documentation
//! Output handlers for different logging destinations
//!
//! This module contains implementations for various log output types:
//! - Console output (with colors)
//! - File output (with rotation)
//! - Web streaming output
//! - Structured JSON output

pub mod console;
#[cfg(feature = "aws-backend")]
pub mod dynamodb;
pub mod file;
pub mod structured;
pub mod web;

pub use console::ConsoleOutput;
#[cfg(feature = "aws-backend")]
pub use dynamodb::DynamoDbLogger;
pub use file::FileOutput;
pub use structured::StructuredOutput;
pub use web::WebOutput;