Package edu.wpi.first.epilogue
Annotation Interface CustomLoggerFor
Placed on a subclass of
ClassSpecificLogger
. Epilogue will detect it at compile time and
allow logging of data types compatible with the logger.
@CustomLoggerFor(VendorMotorType.class)
class ExampleMotorLogger extends ClassSpecificLogger<VendorMotorType> { }
-
Required Element Summary
-
Element Details
-
value
The class or classes of objects able to be logged with the annotated logger.- Returns:
- the supported data types
-