Removing un-necessary log statement.

This commit is contained in:
mike12345567 2025-03-13 11:58:42 +00:00
parent b063fab09b
commit 4ad012c753
1 changed files with 1 additions and 3 deletions

View File

@ -147,9 +147,7 @@ export class FlagSet<T extends { [name: string]: boolean }> {
for (const [name, value] of Object.entries(posthogFlags)) {
if (!this.isFlagName(name)) {
// We don't want an unexpected PostHog flag to break the app, so we
// just log it and continue.
console.warn(`Unexpected posthog flag "${name}": ${value}`)
// We don't want an unexpected PostHog flag to break the app
continue
}