File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ export class DevChatClient {
155155 logger . channel ( ) ?. info ( "No local service port found." ) ;
156156 throw new DCLocalServicePortNotSetError ( ) ;
157157 }
158+ logger . channel ( ) ?. trace ( "Using local service port:" , process . env . DC_LOCALSERVICE_PORT ) ;
158159 const port : number = parseInt ( process . env . DC_LOCALSERVICE_PORT || '8008' , 10 ) ;
159160 this . baseURL = `http://localhost:${ port } ` ;
160161 }
@@ -174,6 +175,7 @@ export class DevChatClient {
174175 logger . channel ( ) ?. info ( "No local service port found." ) ;
175176 throw new DCLocalServicePortNotSetError ( ) ;
176177 }
178+ logger . channel ( ) ?. trace ( "Using local service port:" , process . env . DC_LOCALSERVICE_PORT ) ;
177179 const port : number = parseInt ( process . env . DC_LOCALSERVICE_PORT || '8008' , 10 ) ;
178180 this . baseURL = `http://localhost:${ port } ` ;
179181 }
@@ -251,6 +253,7 @@ export class DevChatClient {
251253 if ( ! process . env . DC_LOCALSERVICE_PORT ) {
252254 logger . channel ( ) ?. info ( "No local service port found." ) ;
253255 }
256+ logger . channel ( ) ?. trace ( "Using local service port:" , process . env . DC_LOCALSERVICE_PORT ) ;
254257 const port : number = parseInt ( process . env . DC_LOCALSERVICE_PORT || '8008' , 10 ) ;
255258 this . baseURL = `http://localhost:${ port } ` ;
256259 }
You can’t perform that action at this time.
0 commit comments