startup log
All checks were successful
Build and Test / sonic-transformed (push) Successful in 1m57s
Build and Test / wii-sports-club (push) Successful in 2m28s
Build and Test / minecraft-wiiu (push) Successful in 2m58s
Build and Test / friends (push) Successful in 3m29s
Build and Test / fast-racing-neo (push) Successful in 3m50s
Build and Test / splatoon (push) Successful in 4m30s
Build and Test / super-mario-maker (push) Successful in 5m34s
Build and Test / splatoon-testfire (push) Successful in 5m52s
Build and Test / puyopuyo (push) Successful in 6m23s
Build and Test / wii-u-chat (push) Successful in 6m54s
Build and Test / mario-tennis (push) Successful in 7m9s

This commit is contained in:
Maple Nebel 2026-05-29 10:53:58 +02:00
commit 98649b224d

View file

@ -1,10 +1,11 @@
use std::fs;
use std::fs::File;
use chrono::{Local, SecondsFormat};
use log::LevelFilter;
use simplelog::{ColorChoice, CombinedLogger, Config, TermLogger, TerminalMode, WriteLogger};
use std::fs;
use std::fs::File;
pub fn setup(){
pub fn setup() {
println!("setting up logger and dotenv");
CombinedLogger::init(vec![
TermLogger::new(
LevelFilter::Info,
@ -25,7 +26,7 @@ pub fn setup(){
}
}),
])
.unwrap();
.unwrap();
/*ctrlc::set_handler(||{
FORCE_EXIT.call_once_force(|_|{
@ -34,4 +35,4 @@ pub fn setup(){
}).unwrap();*/
dotenv::dotenv().ok();
}
}