Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1use ctor::ctor; 2 3#[ctor] 4fn init_logger() { 5 env_logger::builder() 6 .filter_level(log::LevelFilter::Info) 7 .init(); 8}