diff --git a/src/egui_app.rs b/src/egui_app.rs index ada4a20..a2b8cbe 100644 --- a/src/egui_app.rs +++ b/src/egui_app.rs @@ -323,11 +323,21 @@ impl Default for MathApp { impl MathApp { #[allow(dead_code)] // This is used lol /// Create new instance of `MathApp` and return it - pub fn new(_cc: &eframe::CreationContext<'_>) -> Self { + pub fn new(cc: &eframe::CreationContext<'_>) -> Self { // Remove loading indicator on wasm #[cfg(target_arch = "wasm32")] stop_loading(); + tracing::info!( + "Integration name: {} Url: {:?}", + cc.integration_info.name, + if let Some(url) = &cc.integration_info.web_info { + url.location.url.clone() + } else { + "N/A".to_owned() + } + ); + tracing::info!("egui app initialized."); Self::default() // initialize `MathApp` }