From 4e5007ae1abe58455e64e4cf32a202c054965227 Mon Sep 17 00:00:00 2001 From: Joel Einbinder Date: Fri, 28 Aug 2020 16:47:06 -0700 Subject: [PATCH] fix(rpc): nice error stacks when running tests (#3507) --- src/client/channelOwner.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client/channelOwner.ts b/src/client/channelOwner.ts index f8f4d4896b..81e1a0f68b 100644 --- a/src/client/channelOwner.ts +++ b/src/client/channelOwner.ts @@ -19,6 +19,7 @@ import * as channels from '../protocol/channels'; import type { Connection } from './connection'; import type { Logger } from './types'; import { debugLogger } from '../utils/debugLogger'; +import { isDevMode } from '../utils/utils'; export abstract class ChannelOwner extends EventEmitter { private _connection: Connection; @@ -99,10 +100,9 @@ export abstract class ChannelOwner