File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 44 action ,
55 flow ,
66 computed ,
7- observe ,
8- runInAction ,
7+ observe
98} from 'mobx' ;
109
1110import {
@@ -226,12 +225,10 @@ export class ProxyStore {
226225
227226 private monitorRemoteClientConnection ( client : PluggableAdmin . AdminClient < { } > ) {
228227 client . on ( 'stream-error' , ( err ) => {
229- console . log ( 'Admin client stream error' ) ;
230- logError ( err . message ? err : new Error ( 'Client stream error' ) , { cause : err } ) ;
228+ console . log ( 'Admin client stream error' , err ) ;
231229 } ) ;
232230 client . on ( 'subscription-error' , ( err ) => {
233- console . log ( 'Admin client subscription error' ) ;
234- logError ( err . message ? err : new Error ( 'Client subscription error' ) , { cause : err } ) ;
231+ console . log ( 'Admin client subscription error' , err ) ;
235232 } ) ;
236233 client . on ( 'stream-reconnect-failed' , ( err ) => {
237234 logError ( err . message ? err : new Error ( 'Client reconnect error' ) , { cause : err } ) ;
You can’t perform that action at this time.
0 commit comments