Add path of .cast file to output when recording session ends

Closes #680
This commit is contained in:
moritzdietz
2025-06-19 13:35:08 +02:00
parent d271e6ea4a
commit 3c7b6d0782

View File

@@ -152,7 +152,12 @@ impl cli::Session {
.await?
};
if let Some(path) = self.output_file.as_ref() {
status::info!("asciinema session ended");
status::info!("Recorded to {}", path);
} else {
status::info!("asciinema session ended");
}
shutdown_token.cancel();
if let Some(task) = server {