diff --git a/desktop/flipper-common/src/utils/LoggerTailer.tsx b/desktop/flipper-common/src/utils/LoggerTailer.tsx index 98d50816b..258eeaa9b 100644 --- a/desktop/flipper-common/src/utils/LoggerTailer.tsx +++ b/desktop/flipper-common/src/utils/LoggerTailer.tsx @@ -70,6 +70,10 @@ function transformLogLevel(level: LoggerTypes, message: string) { if (message.endsWith('Network Error')) { return 'warn'; } + + if (message.includes('Watchman was not found in PATH')) { + return 'warn'; + } } return level;