mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-16 03:38:03 +01:00
Merge pull request #683 from moritzdietz/update-output
Add filename of cast file to session end output
This commit is contained in:
@@ -152,7 +152,12 @@ impl cli::Session {
|
|||||||
.await?
|
.await?
|
||||||
};
|
};
|
||||||
|
|
||||||
status::info!("asciinema session ended");
|
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();
|
shutdown_token.cancel();
|
||||||
|
|
||||||
if let Some(task) = server {
|
if let Some(task) = server {
|
||||||
|
|||||||
Reference in New Issue
Block a user