Project: bml_lib License: BSD Dependencies: Used by: |
edu::wpi::hri::log::SystemLogger Class Reference
Inheritance diagram for edu::wpi::hri::log::SystemLogger:
![]()
Detailed DescriptionLog messages via the Standard out routines. No exceptions can be thrown except for the Exceptions which the System can throw. Definition at line 43 of file SystemLogger.java. Constructor & Destructor Documentation
Create a new SystemLogger which always prints the given name in the specified color before printing any message given.
Definition at line 67 of file SystemLogger.java. Member Function Documentation
Print a debug string to the user so long as the user wants to see debugging.
Implements edu::wpi::hri::log::Logger. Definition at line 76 of file SystemLogger.java.
Print an error string to the user so long as the user wants to see errors.
Implements edu::wpi::hri::log::Logger. Definition at line 92 of file SystemLogger.java.
Print a fatal string to the user and then exit the program. The specified exit code will be used when calling the System.exit() routine.
Implements edu::wpi::hri::log::Logger. Definition at line 97 of file SystemLogger.java.
Print an info string to the user so long as the user wants to see information.
Implements edu::wpi::hri::log::Logger. Definition at line 82 of file SystemLogger.java.
Definition at line 71 of file SystemLogger.java.
Print a warning string to the user so long as the user wants to see warning messages.
Implements edu::wpi::hri::log::Logger. Definition at line 87 of file SystemLogger.java. Member Data Documentation
Initial value:
Colors.GREEN_FG.bashColor + "[DEBUG] " Definition at line 45 of file SystemLogger.java.
Initial value:
Colors.RED_FG.bashColor + "[ERROR] " Definition at line 51 of file SystemLogger.java.
Initial value:
Colors.RED_FG.bashColor + "[FATAL] " Definition at line 53 of file SystemLogger.java.
Initial value:
Colors.DEFAULT.bashColor + "[ INFO] " Definition at line 47 of file SystemLogger.java.
Initial value:
Colors.YELLOW_FG.bashColor + "[ WARN] " Definition at line 49 of file SystemLogger.java. The documentation for this class was generated from the following file:
|