Module aeonics.core

Class 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 trace
      static void register()  
      static void stacktrace​(java.lang.String key)
      Generate debug data with the call stack trace
      static void values​(java.lang.String key, java.lang.Object... values)
      Generate debug data with the specified values
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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 (see Message.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 (see Message.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 (see Message.key())