* Workflow changes * Propagate app_identifier via State * Remove old updater stuff * Remove patch file * Remove unused binding * Fix application loading * Don't sign windows binaries by default * Remove the damn emojis * Figure out where windows artifacts are * Fix windows artifacts
93 lines
3.2 KiB
Rust
93 lines
3.2 KiB
Rust
/*
|
|
tracing is set basd on the environment variable RUST_LOG=xxx, depending on the amount of logs to show
|
|
ERROR > WARN > INFO > DEBUG > TRACE
|
|
eg. RUST_LOG=info will show info, warn, and error logs
|
|
RUST_LOG="theseus=trace" will show *all* messages but from theseus only (and not dependencies using similar crates)
|
|
RUST_LOG="theseus=trace" will show *all* messages but from theseus only (and not dependencies using similar crates)
|
|
|
|
Error messages returned to Tauri will display as traced error logs if they return an error.
|
|
This will also include an attached span trace if the error is from a tracing error, and the level is set to info, debug, or trace
|
|
|
|
on unix:
|
|
RUST_LOG="theseus=trace" {run command}
|
|
|
|
The default is theseus=show, meaning only logs from theseus will be displayed, and at the info or higher level.
|
|
|
|
*/
|
|
|
|
// Handling for the live development logging
|
|
// This will log to the console, and will not log to a file
|
|
#[cfg(debug_assertions)]
|
|
pub fn start_logger(_app_identifier: &str) -> Option<()> {
|
|
use tracing_subscriber::prelude::*;
|
|
|
|
let filter = tracing_subscriber::EnvFilter::try_from_default_env()
|
|
.unwrap_or_else(|_| {
|
|
tracing_subscriber::EnvFilter::new("theseus=info,theseus_gui=info")
|
|
});
|
|
tracing_subscriber::registry()
|
|
.with(tracing_subscriber::fmt::layer())
|
|
.with(filter)
|
|
.with(tracing_error::ErrorLayer::default())
|
|
.init();
|
|
Some(())
|
|
}
|
|
|
|
// Handling for the live production logging
|
|
// This will log to a file in the logs directory, and will not show any logs in the console
|
|
#[cfg(not(debug_assertions))]
|
|
pub fn start_logger(app_identifier: &str) -> Option<()> {
|
|
use crate::prelude::DirectoryInfo;
|
|
use chrono::Local;
|
|
use std::fs::OpenOptions;
|
|
use tracing_subscriber::fmt::time::ChronoLocal;
|
|
use tracing_subscriber::prelude::*;
|
|
|
|
// Initialize and get logs directory path
|
|
let logs_dir = if let Some(d) =
|
|
DirectoryInfo::launcher_logs_dir_path(app_identifier)
|
|
{
|
|
d
|
|
} else {
|
|
eprintln!("Could not start logger");
|
|
return None;
|
|
};
|
|
|
|
let log_file_name =
|
|
format!("session_{}.log", Local::now().format("%Y%m%d_%H%M%S"));
|
|
let log_file_path = logs_dir.join(log_file_name);
|
|
|
|
if let Err(err) = std::fs::create_dir_all(&logs_dir) {
|
|
eprintln!("Could not create logs directory: {err}");
|
|
}
|
|
|
|
let file = match OpenOptions::new()
|
|
.create(true)
|
|
.write(true)
|
|
.append(true)
|
|
.open(&log_file_path)
|
|
{
|
|
Ok(file) => file,
|
|
Err(e) => {
|
|
eprintln!("Could not start open log file: {e}");
|
|
return None;
|
|
}
|
|
};
|
|
|
|
let filter = tracing_subscriber::EnvFilter::try_from_default_env()
|
|
.unwrap_or_else(|_| tracing_subscriber::EnvFilter::new("theseus=info"));
|
|
|
|
tracing_subscriber::registry()
|
|
.with(
|
|
tracing_subscriber::fmt::layer()
|
|
.with_writer(file)
|
|
.with_ansi(false) // disable ANSI escape codes
|
|
.with_timer(ChronoLocal::rfc_3339()),
|
|
)
|
|
.with(filter)
|
|
.with(tracing_error::ErrorLayer::default())
|
|
.init();
|
|
|
|
Some(())
|
|
}
|