logs
Logs multiple values within the provided block context.
This function captures logs generated within the block and logs them all at once after the block has been executed. It uses a custom LogContext
to temporarily override the log method to capture logs instead of immediately logging them.
Parameters
The block of code within which logs will be captured.
Logs multiple values with their respective keys based on the type of each value.
Parameters
Vararg parameter of pairs where the first element is the key and the second element is the value to log.
Logs a double value with a specified key if the system is in test mode.
Parameters
The key associated with the value to log.
The double value to log.
Logs an integer value with a specified key if the system is in test mode.
Parameters
The key associated with the value to log.
The integer value to log.
Logs a boolean value with a specified key if the system is in test mode.
Parameters
The key associated with the value to log.
The boolean value to log.
Logs a String value with a specified key if the system is in test mode.
Parameters
The key associated with the value to log.
The String value to log.
Logs a WPISerializable value with a specified key if the system is in test mode.
Parameters
The key associated with the value to log.
The WPISerializable value to log.
Logs a StructSerializable value with a specified key if the system is in test mode.
Parameters
The key associated with the value to log.
The SwerveModuleState value to log.