Browse Source

Downgrade console message from error to warning on reconnect

Kevin Bates 4 years ago
parent
commit
d53ee96f1a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/services/src/kernel/default.ts

+ 1 - 1
packages/services/src/kernel/default.ts

@@ -1393,7 +1393,7 @@ export class KernelConnection implements Kernel.IKernelConnection {
         0,
         0,
         1e3 * (Math.pow(2, this._reconnectAttempt) - 1)
         1e3 * (Math.pow(2, this._reconnectAttempt) - 1)
       );
       );
-      console.error(
+      console.warn(
         `Connection lost, reconnecting in ${Math.floor(
         `Connection lost, reconnecting in ${Math.floor(
           timeout / 1000
           timeout / 1000
         )} seconds.`
         )} seconds.`