add rust formatting rules
This commit is contained in:
parent
6f264d9278
commit
bab618708f
7 changed files with 32 additions and 15 deletions
|
@ -1,10 +1,11 @@
|
|||
use colored::Colorize;
|
||||
use log::{Level, Log, Metadata, Record};
|
||||
use once_cell::sync::Lazy;
|
||||
use std::fs::OpenOptions;
|
||||
use std::io::{self, Write};
|
||||
use std::sync::{Arc, Mutex};
|
||||
|
||||
use colored::Colorize;
|
||||
use log::{Level, Log, Metadata, Record};
|
||||
use once_cell::sync::Lazy;
|
||||
|
||||
pub static LOGGER: Lazy<DynamicLogger> = Lazy::new(DynamicLogger::new);
|
||||
|
||||
// A logger that dynamically switches between file and stdout
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue