File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import { RemoteRequestHandler } from '~/core/handlers/RemoteRequestHandler'
13
13
import { shouldBypassRequest } from '~/core/utils/internal/requestUtils'
14
14
import { getRemoteContextFromEnvironment } from './remoteContext'
15
15
import { LifeCycleEventsMap } from '~/core/sharedOptions'
16
+ import { devUtils } from '~/core/utils/internal/devUtils'
16
17
17
18
const handlersStorage = new AsyncLocalStorage < RequestHandlersContext > ( )
18
19
@@ -143,9 +144,9 @@ export class SetupServerApi
143
144
)
144
145
} ,
145
146
( ) => {
146
- // eslint-disable-next-line no-console
147
- console . error (
148
- `Failed to connect to a remote server at " ${ remoteContext . serverUrl } "` ,
147
+ devUtils . error (
148
+ 'Failed to enable remote mode: could not connect to the remote server at "%s"' ,
149
+ remoteContext . serverUrl ,
149
150
)
150
151
} ,
151
152
)
You can’t perform that action at this time.
0 commit comments