usefolk_core::config::{LogConfig, LogFormat};usefolk_core::logging::init;#[test]fninit_succeeds_once(){let cfg = LogConfig {
filter:"info".into(),
format:LogFormat::Text,};// Don't assert success vs failure: in a test process, another test may
// have initialized first. Just ensure it doesn't panic.
let_=init(&cfg);}