From: charleswrayjr Date: Mon, 8 Sep 2025 16:37:20 +0000 (-0500) Subject: Testing vpn paths. X-Git-Url: https://git.phasecustomsoft.com/?a=commitdiff_plain;h=0e98bc1d13971afb033f9d0310a0f4ec7512c8d1;p=phs-api.git Testing vpn paths. --- diff --git a/src/controllers/vpn.controller.js b/src/controllers/vpn.controller.js index 2847f11..8cecaaa 100644 --- a/src/controllers/vpn.controller.js +++ b/src/controllers/vpn.controller.js @@ -11,7 +11,7 @@ const parseVpnStatus = ( output ) => { const lines = output.split( '\n' ).map( line => line.trim() ).filter( Boolean ); const lValues = [ 'lines:', lines ].join( ' ' ); - logger.debug( lValues ); + logger.info( lValues ); // Find indices using a single pass let sIndex = -1, mIndex = -1, eIndex = -1; lines.forEach( ( line, i ) => {