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