Joey Geralnik
Results
1
comments of
Joey Geralnik
Came upon this issue too, the solution was to define storageErr as a pointer: ``` var storageErr *azblob.StorageError if errors.As(err, &storageErr) { log.WithContext(ctx).Errorf("Caught storage error: %v", storageErr) } ```