The Master Gate
LogT() – log simple messages.
All other output methods of the first type (with severity) are routed through this method to actually perform the logging.
● Location – basically, these are the same as the first method type (xxxxxT( ).) The difference is in the additional severity argument at the beginning:
○ logT(int severity, String message)
○ logT(int severity, String subloc, String message)
○ logT(int severity, String message, Object[] args)
○ logT(int severity, String subloc, String message, Object[] args)
● Category – the same as the location:
○ logT(int severity, Location loc, String message)
○ logT(int severity, Location loc, String subloc, String message)
○ logT(int severity, Location loc, String message, Object[] args)
○ logT(int severity, Location loc, String subloc, String message, Object[] args)