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

index 2847f111951a47b02d95e1ee1c498096ac8ac4af..8cecaaacd8f8d41a28cc58475c373f283dd13959 100644 (file)
@@ -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 ) => {