Skip to content

Commit

Permalink
add logging statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Lily Pan committed Oct 31, 2024
1 parent e59f5e8 commit eae4e6f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions node-bootstrapper/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ func (a *App) ProvisionWait(ctx context.Context, timeout *time.Duration) (string
if err != nil {
return "", err
}
slog.Info("provision-wait finished", "provision.json content", string(data))
return string(data), nil
}

Expand Down Expand Up @@ -144,6 +145,7 @@ func (a *App) ProvisionWait(ctx context.Context, timeout *time.Duration) (string
if err != nil {
return "", err
}
slog.Info("provision-wait finished", "provision.json content", string(data))
return string(data), nil
}

Expand Down

0 comments on commit eae4e6f

Please sign in to comment.