From 1b6182cea5a1fa156e4a8df20ba6a647916625ce Mon Sep 17 00:00:00 2001 From: KCarretto Date: Tue, 7 Jan 2025 02:26:36 +0000 Subject: [PATCH] log error --- tavern/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tavern/config.go b/tavern/config.go index c2e50baf3..182583019 100644 --- a/tavern/config.go +++ b/tavern/config.go @@ -178,7 +178,7 @@ func (cfg *Config) NewShellMuxes(ctx context.Context) (wsMux *stream.Mux, grpcMu ExpirationPolicy: 24 * time.Hour, // Automatically delete unused subscriptions after 1 day }) if err != nil { - panic(fmt.Errorf("failed to create gcppubsub subscription, to disable creation do not use the 'gcppubsub://' prefix for the environment variable %q", EnvPubSubSubscriptionShellInput.Key)) + panic(fmt.Errorf("failed to create gcppubsub subscription, to disable creation do not use the 'gcppubsub://' prefix for the environment variable %q: %v", EnvPubSubSubscriptionShellInput.Key, err)) } exists, err := sub.Exists(ctx) if err != nil {