Removing un-necessary log statement.
This commit is contained in:
parent
b063fab09b
commit
4ad012c753
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue