diff --git a/src/Rust/src/stub.rs b/src/Rust/src/stub.rs index 63e371f3..5f75b847 100644 --- a/src/Rust/src/stub.rs +++ b/src/Rust/src/stub.rs @@ -23,6 +23,9 @@ fn main() -> ExitCode { let _ = logging::setup_logging(Some(&default_log_file), false, false, false); + info!("--"); + info!("Starting Velopack Stub (at {:?})", my_path); + let mut update_exe = my_path.clone(); update_exe.pop(); update_exe.push("Update.exe"); diff --git a/src/Rust/src/update.rs b/src/Rust/src/update.rs index bbb2bc64..20a71fd1 100644 --- a/src/Rust/src/update.rs +++ b/src/Rust/src/update.rs @@ -95,6 +95,7 @@ fn main() -> Result<()> { containing_dir.pop(); env::set_current_dir(containing_dir)?; + info!("--"); info!("Starting Velopack Updater ({})", env!("NGBV_VERSION")); info!(" Location: {}", env::current_exe()?.to_string_lossy()); info!(" CWD: {}", env::current_dir()?.to_string_lossy());