Remove console logging

This commit is contained in:
James Salter 2021-07-21 07:42:44 +01:00
parent 2a48d3c9bc
commit d4550c1a28

View File

@ -42,7 +42,6 @@ export class PosthogAnalytics {
this.onlyTrackAnonymousEvents = onlyTrackAnonymousEvents;
const posthogConfig = SdkConfig.get()["posthog"];
if (posthogConfig) {
console.log(`Initialising Posthog for ${posthogConfig.apiHost}`);
this.posthog.init(posthogConfig.projectApiKey, { api_host: posthogConfig.apiHost });
this.initialised = true;
}