Fix RCTInspectorPackagerConnection logspam for real

Reviewed By: danzimm

Differential Revision: D6486113

fbshipit-source-id: f6e661ce95ae89bafce9e0d773b484b28e4f83c4
This commit is contained in:
Adam Ernst 2017-12-05 10:19:18 -08:00 коммит произвёл Facebook Github Bot
Родитель 830b431453
Коммит b1701ccaef
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -272,7 +272,10 @@ RCT_NOT_IMPLEMENTED(- (instancetype)init)
- (void)abort:(NSString *)message
withCause:(NSError *)cause
{
RCTLogTrace(@"Error occurred, shutting down websocket connection: %@ %@", message, cause);
// Don't log ECONNREFUSED at all; it's expected in cases where the server isn't listening.
if (![cause.domain isEqual:NSPOSIXErrorDomain] || cause.code != ECONNREFUSED) {
RCTLogInfo(@"Error occurred, shutting down websocket connection: %@ %@", message, cause);
}
[self closeAllConnections];
[self disposeWebSocket];