We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad76fab commit 4a45879Copy full SHA for 4a45879
1 file changed
src/cli.rs
@@ -166,6 +166,8 @@ pub fn handle_run_command(
166
// Initialise program logger
167
log::init(&settings.log_level, Some(output_path)).context("Failed to initialise logging.")?;
168
169
+ info!("Starting MUSE2 v{}", env!("CARGO_PKG_VERSION"));
170
+
171
// Load the model to run
172
let (model, assets) = load_model(model_path).context("Failed to load model.")?;
173
info!("Loaded model from {}", model_path.display());
0 commit comments