diff --git a/cmd/browser_pools.go b/cmd/browser_pools.go index 79a19c8..fbb63f8 100644 --- a/cmd/browser_pools.go +++ b/cmd/browser_pools.go @@ -373,7 +373,11 @@ func (c BrowserPoolsCmd) Release(ctx context.Context, in BrowserPoolsReleaseInpu if err != nil { return util.CleanedUpSdkError{Err: err} } - pterm.Success.Printf("Released browser %s back to pool %s\n", in.SessionID, in.IDOrName) + if in.Reuse.Set && !in.Reuse.Value { + pterm.Success.Printf("Deleted browser %s from pool %s\n", in.SessionID, in.IDOrName) + } else { + pterm.Success.Printf("Released browser %s back to pool %s\n", in.SessionID, in.IDOrName) + } return nil }