use crate::;
/// A format that passes through LogInfo unchanged.
/// Useful for testing or when you want raw log objects.
;
//TODO: make format take an input and output
/*impl Format for PassthroughFormat {
type Input = LogInfo;
type Output = LogInfo;
fn transform(&self, info: Self::Input) -> Option<Self::Output> {
Some(info)
}
}*/