From: charleswrayjr Date: Mon, 8 Sep 2025 17:55:26 +0000 (-0500) Subject: Testing vpn paths. X-Git-Url: https://git.phasecustomsoft.com/?a=commitdiff_plain;h=ad4c91bf97f26845d4b2e4ff7e3ffb4bcf5ac8ed;p=phs-api.git Testing vpn paths. --- diff --git a/src/controllers/vpn.controller.js b/src/controllers/vpn.controller.js index 67335e1..bc79fec 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.error( lValues ); + logger.warn( lValues ); // Find indices using a single pass let sIndex = -1, mIndex = -1, eIndex = -1; lines.forEach( ( line, i ) => {