]> PHS Git Server - phs-api.git/commitdiff
Testing vpn paths.
authorcharleswrayjr <charleswrayjr@gmail.com>
Mon, 8 Sep 2025 16:41:40 +0000 (11:41 -0500)
committercharleswrayjr <charleswrayjr@gmail.com>
Mon, 8 Sep 2025 16:41:40 +0000 (11:41 -0500)
src/controllers/vpn.controller.js

index 7b3fc209b539bbed576919657c2d3fc82b269fb8..2847f111951a47b02d95e1ee1c498096ac8ac4af 100644 (file)
@@ -11,8 +11,7 @@ const parseVpnStatus = ( output ) => {
   const lines = output.split( '\n' ).map( line => line.trim() ).filter( Boolean );
 
   const lValues = [ 'lines:', lines ].join( ' ' );
-  logger.info( lValues );
-  console.log( 'console: ', lValues );
+  logger.debug( lValues );
   // Find indices using a single pass
   let sIndex = -1, mIndex = -1, eIndex = -1;
   lines.forEach( ( line, i ) => {