Skip to content

Commit

Permalink
dev: print out read events during deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
thdxr committed Jul 24, 2024
1 parent 966c20d commit c04a310
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions cmd/sst/mosaic/ui/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,14 @@ func (u *UI) Event(unknown interface{}) {
evt.Metadata.URN,
)
}
if evt.Metadata.Op == apitype.OpRead {
u.printProgress(
TEXT_SUCCESS,
"Read",
duration,
evt.Metadata.URN,
)
}
if evt.Metadata.Op == apitype.OpUpdate {
u.printProgress(
TEXT_SUCCESS,
Expand Down

0 comments on commit c04a310

Please sign in to comment.