Skip to main content

Mountain/IPC/DevLog/
InitEager.rs

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