File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ import * as helpers from "../../common/helpers";
11
11
export class SocketProxyFactory implements ISocketProxyFactory {
12
12
constructor ( private $logger : ILogger ,
13
13
private $projectData : IProjectData ,
14
- private $projectDataService : IProjectDataService ) { }
14
+ private $projectDataService : IProjectDataService ,
15
+ private $options : IOptions ) { }
15
16
16
17
public createSocketProxy ( factory : ( ) => net . Socket ) : IFuture < any > {
17
18
return ( ( ) => {
@@ -119,6 +120,9 @@ export class SocketProxyFactory implements ISocketProxyFactory {
119
120
120
121
let socketFileLocation = temp . path ( { suffix : ".sock" } ) ;
121
122
server . listen ( socketFileLocation ) ;
123
+ if ( ! this . $options . client ) {
124
+ this . $logger . info ( "socket-file-location: " + socketFileLocation ) ;
125
+ }
122
126
123
127
return socketFileLocation ;
124
128
}
You can’t perform that action at this time.
0 commit comments