Class ErrorLogger


  • public class ErrorLogger
    extends java.lang.Object
    This class deals with some logging that is not handled by the log4j replacement.
    Version:
    $Revision: 1.3 $
    Author:
    Ben Litchfield
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void log​(java.lang.String errorMessage)
      Log an error message.
      static void log​(java.lang.String errorMessage, java.lang.Throwable t)
      Log an error message.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • log

        public static void log​(java.lang.String errorMessage)
        Log an error message. This is only used for log4j replacement and should never be used when writing code.
        Parameters:
        errorMessage - The error message.
      • log

        public static void log​(java.lang.String errorMessage,
                               java.lang.Throwable t)
        Log an error message. This is only used for log4j replacement and should never be used when writing code.
        Parameters:
        errorMessage - The error message.
        t - The exception.