You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this._options.logService.info(`${logPrefix} A network error occured while trying to reconnect, will try again...`);
462
+
this._options.logService.info(`${logPrefix} A network error occurred while trying to reconnect, will try again...`);
463
463
this._options.logService.trace(err);
464
464
// try again!
465
465
continue;
466
466
}
467
467
if(isPromiseCanceledError(err)){
468
-
this._options.logService.info(`${logPrefix} A promise cancelation error occured while trying to reconnect, will try again...`);
468
+
this._options.logService.info(`${logPrefix} A promise cancelation error occurred while trying to reconnect, will try again...`);
469
469
this._options.logService.trace(err);
470
470
// try again!
471
471
continue;
472
472
}
473
-
this._options.logService.error(`${logPrefix} An unknown error occured while trying to reconnect, since this is an unknown case, it will be treated as a permanent error! Will give up now! Error:`);
473
+
this._options.logService.error(`${logPrefix} An unknown error occurred while trying to reconnect, since this is an unknown case, it will be treated as a permanent error! Will give up now! Error:`);
0 commit comments