LogPingu

public class LogPingu

Utility class for logging. Provides methods to update PID values, retrieve double values, create pairs, and perform test logging.

Properties

Link copied to clipboard
public final static LogPingu INSTANCE

Functions

Link copied to clipboard
public final static Unit log(String string, Object value)

Logs a key-value pair.

Link copied to clipboard
public final static Unit logs(Runnable block)

Logs multiple values within the provided block context.

public final static Unit logs(Pair<String, Object> logs)

Logs multiple values with their respective keys based on the type of each value.

public final static Unit logs<T extends WPISerializable>(String key, T value)

Logs a WPISerializable value with a specified key if the system is in test mode.

public final static Unit logs<T extends StructSerializable>(String key, T value)

Logs a StructSerializable value with a specified key if the system is in test mode.

public final static Unit logs(String key, Boolean value)

Logs a boolean value with a specified key if the system is in test mode.

public final static Unit logs(String key, Double value)

Logs a double value with a specified key if the system is in test mode.

public final static Unit logs(String key, Integer value)

Logs an integer value with a specified key if the system is in test mode.

public final static Unit logs(String key, String value)

Logs a String value with a specified key if the system is in test mode.

Link copied to clipboard
public final static Unit metaLogs(String key, String value)

Logs a meta data value with a specified key if the system is in test mode.