File tree Expand file tree Collapse file tree
crates/vespertide-cli/src/commands Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,11 +27,7 @@ pub fn cmd_log() -> Result<()> {
2727 plan. version. to_string( ) . bright_magenta( ) . bold( )
2828 ) ;
2929 if let Some ( created) = & plan. created_at {
30- println ! (
31- " {} {}" ,
32- "Created at:" . bright_cyan( ) ,
33- created. bright_white( )
34- ) ;
30+ println ! ( " {} {}" , "Created at:" . bright_cyan( ) , created. bright_white( ) ) ;
3531 }
3632 if let Some ( comment) = & plan. comment {
3733 println ! ( " {} {}" , "Comment:" . bright_cyan( ) , comment. bright_white( ) ) ;
@@ -56,9 +52,7 @@ pub fn cmd_log() -> Result<()> {
5652 ( i + 1 ) . to_string( ) . bright_magenta( ) . bold( ) ,
5753 q. sql( ) . trim( ) . bright_white( )
5854 ) ;
59- if !q. binds ( ) . is_empty ( ) {
60- println ! ( " {} {:?}" , "binds:" . bright_cyan( ) , q. binds( ) ) ;
61- }
55+ println ! ( " {} {:?}" , "binds:" . bright_cyan( ) , q. binds( ) ) ;
6256 }
6357 println ! ( ) ;
6458 }
You can’t perform that action at this time.
0 commit comments