- java.lang.Object
-
- aeonics.entity.Debug
-
public class Debug extends java.lang.Object
This class can be used from anywhere in the system to send troubleshooting information to be processed as data.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
debug(java.lang.String key, java.lang.Object... values)
Generate debug data with the specified values and the call stack tracestatic void
register()
static void
stacktrace(java.lang.String key)
Generate debug data with the call stack tracestatic void
values(java.lang.String key, java.lang.Object... values)
Generate debug data with the specified values
-
-
-
Method Detail
-
register
public static void register()
-
debug
public 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 (seeMessage.key()
)values
- all the values that should be included
-
values
public static void values(java.lang.String key, java.lang.Object... values)
Generate debug data with the specified values- Parameters:
key
- the message key (seeMessage.key()
)values
- all the values that should be included
-
stacktrace
public static void stacktrace(java.lang.String key)
Generate debug data with the call stack trace- Parameters:
key
- the message key (seeMessage.key()
)
-
-