Show TOC Start of Content Area

Function documentation The Master Gate  Locate the document in its SAP Library structure

Use

LogT() – use it to log simple messages. All other output methods of the first type (with severity) are ultimately 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)

 

End of Content Area