We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ecdd01 commit d0a3766Copy full SHA for d0a3766
src/posthog-core.ts
@@ -1794,11 +1794,18 @@ export class PostHog {
1794
}
1795
if (this.config.debug) {
1796
Config.DEBUG = true
1797
- logger.info('set_config', {
1798
- config,
1799
- oldConfig,
1800
- newConfig: { ...this.config },
1801
- })
+ logger.info(
+ 'set_config',
+ JSON.stringify(
+ {
+ config,
1802
+ oldConfig,
1803
+ newConfig: { ...this.config },
1804
+ },
1805
+ null,
1806
+ 2
1807
+ )
1808
1809
1810
1811
this.sessionRecording?.startIfEnabledOrStop()
0 commit comments