diff --git a/src/utils/index.ts b/src/utils/index.ts
index 78e107bcf..6a3ee2109 100644
--- a/src/utils/index.ts
+++ b/src/utils/index.ts
@@ -181,7 +181,7 @@ export const _safewrap = function <F extends (...args: any[]) => any = (...args:
             // @ts-ignore
             return f.apply(this, args)
         } catch (e) {
-            logger.critical('Implementation error. Please turn on debug and contact support@posthog.com.')
+            logger.critical('Implementation error. Please turn on debug mode and open a ticket on https://app.posthog.com/home#panel=support%3Asupport%3A.')
             logger.critical(e)
         }
     } as F