UNPKG

@posthog/wizard

Version:

The PostHog wizard helps you to configure your project

14 lines (13 loc) 484 B
export declare const LOG_FILE_PATH = "/tmp/posthog-wizard.log"; /** * Initialize the log file with a run header. * Call this at the start of each wizard run. */ export declare function initLogFile(): void; /** * Log a message to the file at /tmp/posthog-wizard.log. * Always writes regardless of debug flag. */ export declare function logToFile(...args: unknown[]): void; export declare function debug(...args: unknown[]): void; export declare function enableDebugLogs(): void;