mistralrs_core/utils/
log.rs

1use std::{
2    hash::{DefaultHasher, Hash, Hasher},
3    sync::Mutex,
4};
5
6use once_cell::sync::Lazy;
7use tracing::info;
8
9static HASHED_AUTOLOADER_LOGS: Lazy<Mutex<Vec<u64>>> = Lazy::new(|| Mutex::new(Vec::new()));
10
11pub fn once_log_info<M: AsRef<str>>(msg: M) {
12    let msg = msg.as_ref();
13    let mut hasher = DefaultHasher::new();
14    msg.hash(&mut hasher);
15    let hash = hasher.finish();
16
17    let mut log = HASHED_AUTOLOADER_LOGS.lock().expect("Poisoned Lock");
18    if !log.contains(&hash) {
19        info!("{msg}");
20        log.push(hasher.finish());
21    } else {
22        log.push(hasher.finish());
23    }
24}