rudimentary reimplementation of the log

This commit is contained in:
Llywelwyn 2023-09-25 04:05:57 +01:00
parent 1cd9f75ecc
commit cdf0257598
3 changed files with 28 additions and 5 deletions

View file

@ -3,7 +3,7 @@ use bracket_lib::prelude::*;
use std::sync::Mutex;
lazy_static! {
static ref LOG: Mutex<Vec<Vec<LogFragment>>> = Mutex::new(Vec::new());
pub static ref LOG: Mutex<Vec<Vec<LogFragment>>> = Mutex::new(Vec::new());
}
#[allow(dead_code)]