#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_cfg))]
pub mod error;
pub mod ffi;
pub mod log;
pub use error::LogError;
pub use log::{
active_activity_id, active_activity_ids, log, log_enabled, log_with_privacy, ActivityIds,
Level, Logger, Privacy, SignpostId, CATEGORY_DYNAMIC_STACK_TRACING, CATEGORY_DYNAMIC_TRACING,
CATEGORY_POINTS_OF_INTEREST,
};
pub mod prelude {
pub use crate::error::LogError;
pub use crate::log::{
active_activity_id, active_activity_ids, log, log_enabled, log_with_privacy, ActivityIds,
Level, Logger, Privacy, SignpostId, CATEGORY_DYNAMIC_STACK_TRACING,
CATEGORY_DYNAMIC_TRACING, CATEGORY_POINTS_OF_INTEREST,
};
}