Vehicle Movement Logs

Hey there, I run a server in Squad. I’m trying to make some improvements and add-ons on my own server. In the file Saved\Config\WindowsServer\Engine.ini, I have some parameters under the [Core.Log] header that help me output additional log statements. For example:

LogCharacterMovement=VeryVerbose  
LogNetPlayerMovement=VeryVerbose  

These parameters let me see the players’ current positions and the directions they’re facing in the game, based on pawn values. What I really need is to find out the current positions of vehicles in the game and the directions of vehicles with turrets (like APCs, MBTs, IFVs). I’ve tried a bunch of different parameters to figure this out, but none of them worked. Here are some of the parameters I tested:

LogActor=VeryVerbose  
LogMovement=VeryVerbose  
LogNetMove=VeryVerbose  
LogPawnAction=VeryVerbose  
LogPawnMovementComponent=VeryVerbose  
LogPawn=VeryVerbose  
LogProjectileMovement=VeryVerbose  
LogSQMove=VeryVerbose  
LogSQPawn=VeryVerbose  
LogVehicles=VeryVerbose  

These are just a few of them…