diff --git a/desktop/flipper-common/src/utils/LoggerTailer.tsx b/desktop/flipper-common/src/utils/LoggerTailer.tsx index 258eeaa9b..ef2ce9c42 100644 --- a/desktop/flipper-common/src/utils/LoggerTailer.tsx +++ b/desktop/flipper-common/src/utils/LoggerTailer.tsx @@ -74,6 +74,11 @@ function transformLogLevel(level: LoggerTypes, message: string) { if (message.includes('Watchman was not found in PATH')) { return 'warn'; } + + // Random Electron error, not actionable. + if (message.includes('Document is not focused')) { + return 'warn'; + } } return level;