Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified sample-output.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const NO_REASON: &str = "No reason";
/// A CloudFormation CLI that won't make you cry.
///
/// All commands will look for AWS configuration in the usual places. See AWS CLI documentation for
/// more information: https://docs.aws.amazon.com/cli/latest/topic/config-vars.html
/// more information: <https://docs.aws.amazon.com/cli/latest/topic/config-vars.html>
///
/// Use `cloudformatious <command> --help` to get more information about individual commands.
#[derive(Clap, Debug)]
Expand Down Expand Up @@ -596,8 +596,8 @@ impl Default for Sizing {
async fn print_events(sizing: &Sizing, mut events: impl Stream<Item = StackEvent> + Unpin) {
while let Some(event) = events.next().await {
eprintln!(
"{} {:resource_status_size$} {:logical_resource_id_size$} {:resource_type_size$} {}",
format!("{:?}", event.timestamp()),
"{:?} {:resource_status_size$} {:logical_resource_id_size$} {:resource_type_size$} {}",
event.timestamp(),
colorize_status(&event),
event.logical_resource_id(),
event.resource_type(),
Expand Down