From f8371b19db525b0957cda6d49434ec6eb1065eee Mon Sep 17 00:00:00 2001 From: Lorenzo Blasa Date: Thu, 10 Mar 2022 08:26:04 -0800 Subject: [PATCH] Not clearing up a previous client connection should not log as error Summary: ^ This doesn't seem a functionality impairment and there's no actionable items. Reviewed By: lawrencelomax Differential Revision: D34787962 fbshipit-source-id: 9fe42187456bfab3748d469860f6ed7cda2f83d5 --- desktop/flipper-ui-core/src/reducers/connections.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/flipper-ui-core/src/reducers/connections.tsx b/desktop/flipper-ui-core/src/reducers/connections.tsx index 1221d8302..cf4037df0 100644 --- a/desktop/flipper-ui-core/src/reducers/connections.tsx +++ b/desktop/flipper-ui-core/src/reducers/connections.tsx @@ -306,7 +306,7 @@ export default (state: State = INITAL_STATE, action: Actions): State => { return produce(state, (draft) => { if (draft.clients.has(payload.id)) { - console.error( + console.warn( `Received a new connection for client ${payload.id}, but the old connection was not cleaned up`, ); }