Skip to main content

Mountain/IPC/DevLog/
InitEager.rs

1
2//! Force the file sink to initialise before the first
3//! `dev_log!` so a panic on the boot path still produces a
4//! header line + opt-in path. Harmless to call multiple times.
5
6use crate::IPC::DevLog::WriteToFile;
7
8pub fn Fn() { let _ = WriteToFile::InitFileSink(); }