File tree Expand file tree Collapse file tree
forwarder-proxy/method-handlers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -77,7 +77,6 @@ export class ProxyConnectService {
7777 proxyRequest . end ( ) ;
7878
7979 clientSocket . on ( 'error' , ( ) => {
80- this . logger . error ( 'Connection aborted by client' ) ;
8180 proxyRequest . destroy ( ) ;
8281 clientSocket . destroy ( ) ;
8382 } ) ;
Original file line number Diff line number Diff line change @@ -79,7 +79,6 @@ export class ProxyRequestService {
7979 } ) ;
8080
8181 req . on ( 'error' , ( ) => {
82- this . logger . error ( 'HTTP connection aborted by client' ) ;
8382 proxyRequest . destroy ( ) ;
8483 req . destroy ( ) ;
8584 } ) ;
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ async function bootstrap() {
2121 colors : config . isDevelopment ,
2222 prefix : 'Proxy-api' ,
2323 compact : true ,
24+ logLevels : config . isDevelopment ? [ 'debug' ] : [ 'log' ] ,
2425 } ) ,
2526 } ) ;
2627
You can’t perform that action at this time.
0 commit comments