diff --git a/backend/src/helpers/organization.ts b/backend/src/helpers/organization.ts index 7060b8487..4ba3592de 100644 --- a/backend/src/helpers/organization.ts +++ b/backend/src/helpers/organization.ts @@ -57,7 +57,7 @@ const createOrganization = async ({ } catch (err) { Sentry.setUser({ email }); Sentry.captureException(err); - throw new Error('Failed to create organization'); + throw new Error(`Failed to create organization [err=${err}]`); } return organization;