- java.lang.Object
- 
- aeonics.entity.Debug
 
- 
 public class Debug extends java.lang.ObjectThis class can be used from anywhere in the system to send troubleshooting information to be processed as data.
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static voiddebug(java.lang.String key, java.lang.Object... values)Generate debug data with the specified values and the call stack tracestatic voidregister()static voidstacktrace(java.lang.String key)Generate debug data with the call stack tracestatic voidvalues(java.lang.String key, java.lang.Object... values)Generate debug data with the specified values
 
- 
- 
- 
Method Detail- 
registerpublic static void register() 
 - 
debugpublic static void debug(java.lang.String key, java.lang.Object... values)Generate debug data with the specified values and the call stack trace- Parameters:
- key- the message key (see- Message.key())
- values- all the values that should be included
 
 - 
valuespublic static void values(java.lang.String key, java.lang.Object... values)Generate debug data with the specified values- Parameters:
- key- the message key (see- Message.key())
- values- all the values that should be included
 
 - 
stacktracepublic static void stacktrace(java.lang.String key) Generate debug data with the call stack trace- Parameters:
- key- the message key (see- Message.key())
 
 
- 
 
-