Skip to content

Commit e5291ba

Browse files
authored
Log if app purchase was required and executed (#339)
1 parent 37af8f8 commit e5291ba

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

cmd/download.go

+6
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ func downloadCmd() *cobra.Command {
3030

3131
var lastErr error
3232
var acc appstore.Account
33+
var purchased bool = false
3334

3435
return retry.Do(func() error {
3536
infoResult, err := dependencies.AppStore.AccountInfo()
@@ -63,6 +64,10 @@ func downloadCmd() *cobra.Command {
6364
if err != nil {
6465
return err
6566
}
67+
purchased = true
68+
dependencies.Logger.Verbose().
69+
Bool("success", true).
70+
Msg("purchase")
6671
}
6772

6873
interactive, _ := cmd.Context().Value("interactive").(bool)
@@ -96,6 +101,7 @@ func downloadCmd() *cobra.Command {
96101

97102
dependencies.Logger.Log().
98103
Str("output", out.DestinationPath).
104+
Bool("purchased", purchased).
99105
Bool("success", true).
100106
Send()
101107

0 commit comments

Comments
 (0)