org.incava.qualog
Class Qualog

java.lang.Object
  extended by org.incava.qualog.Qualog

public class Qualog
extends java.lang.Object

Provides quasi-logging support, more akin to debugging/development output and trace statements than logging per se. Supports both tabular and non-tabular output formats, the former being with the files, line numbers, classes, and methods being arranged so that they line up vertically. That format, I've found, is better for larger projects (500M+ LOC), in which class names and package hierarchies tend to be larger. The non-tabular format seems better for smaller projects.

Colors can be enabled and disabled, and associated with classes, methods, files, and levels. They are designed to work on terminals that support ANSI escape codes. On platforms without this -- e.g., Windows -- colorization is disabled.

Unlike real logging mechanisms, there is no support for log rotations. I recommend log4j for that. This package is mainly for programmers who want trace statements from a Java program. See Kernighan and Pike for a defense of those of us who develop and debug programs mainly relying on the print statement.

There is a serious performance hit to using this package, since each output statement results in an exception being created.


Field Summary
static ANSIColor BLACK
          The code for black text.
static ANSIColor BLINK
          The code for the blink attribute.
static ANSIColor BLUE
          The code for blue text.
static ANSIColor BOLD
          The code for bold decoration.
static java.lang.String CLASS_WIDTH_PROPERTY_KEY
           
static java.lang.String COLUMNAR_PROPERTY_KEY
           
static ANSIColor CONCEALED
          The code for hidden text.
static ANSIColor CYAN
          The code for cyan text.
protected static int DEFAULT_STACK_DEPTH
          The default number of stack trace elements to display in a stack.
static java.lang.String FILE_WIDTH_PROPERTY_KEY
           
static ANSIColor GREEN
          The code for green text.
static java.lang.String LEVEL_PROPERTY_KEY
           
static org.incava.qualog.QlLevel LEVEL0
           
static org.incava.qualog.QlLevel LEVEL1
           
static org.incava.qualog.QlLevel LEVEL2
           
static org.incava.qualog.QlLevel LEVEL3
           
static org.incava.qualog.QlLevel LEVEL4
           
static org.incava.qualog.QlLevel LEVEL5
           
static org.incava.qualog.QlLevel LEVEL6
           
static org.incava.qualog.QlLevel LEVEL7
           
static org.incava.qualog.QlLevel LEVEL8
           
static org.incava.qualog.QlLevel LEVEL9
           
static java.lang.String LINE_WIDTH_PROPERTY_KEY
           
static ANSIColor MAGENTA
          The code for magenta text.
static java.lang.String METHOD_WIDTH_PROPERTY_KEY
           
static ANSIColor NO_COLOR
          An object denoting no color.
static ANSIColor[] NO_COLORS
          An array denoting no colors.
static int NO_OUTPUT
           
static ANSIColor NONE
          The code for no color applied.
static ANSIColor ON_BLACK
          The code for black background.
static ANSIColor ON_BLUE
          The code for blue background.
static ANSIColor ON_CYAN
          The code for cyan background.
static ANSIColor ON_GREEN
          The code for green background.
static ANSIColor ON_MAGENTA
          The code for magenta background.
static ANSIColor ON_RED
          The code for red background.
static ANSIColor ON_WHITE
          The code for white background.
static ANSIColor ON_YELLOW
          The code for yellow background.
static int QUIET
           
static ANSIColor RED
          The code for red text.
static ANSIColor RESET
          The code for reset of colors and decorations.
static ANSIColor REVERSE
          The code for reversed text.
static java.lang.String SHOW_CLASSES_PROPERTY_KEY
           
static java.lang.String SHOW_FILES_PROPERTY_KEY
           
protected static QlTimer timer
           
static ANSIColor UNDERLINE
          The code for underline (AKA underscore).
static ANSIColor UNDERSCORE
          The code for underscore (AKA underline).
static int VERBOSE
           
static java.lang.String VERBOSE_PROPERTY_KEY
           
static java.lang.String VERSION
          The version of the Qualog module.
static ANSIColor WHITE
          The code for white text.
protected static QlWriter writer
           
static ANSIColor YELLOW
          The code for yellow text.
 
Constructor Summary
Qualog()
           
 
Method Summary
static void addClassSkipped(java.lang.Class cls)
           
static void addClassSkipped(java.lang.String clsName)
           
static void addFilter(QlFilter filter)
           
static boolean black(byte b)
          Writes logging output, with black foreground on the default background.
static boolean black(byte[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(char c)
          Writes logging output, with black foreground on the default background.
static boolean black(char[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(double d)
          Writes logging output, with black foreground on the default background.
static boolean black(double[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(float f)
          Writes logging output, with black foreground on the default background.
static boolean black(float[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(int i)
          Writes logging output, with black foreground on the default background.
static boolean black(int[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(long l)
          Writes logging output, with black foreground on the default background.
static boolean black(long[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.Object obj)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.Object[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with black foreground on the default background.
static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.String msg)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.String name, byte b)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.String name, byte[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.String name, char c)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.String name, char[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.String name, double d)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.String name, double[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.String name, float f)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.String name, float[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.String name, int i)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.String name, int[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.String name, long l)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.String name, long[] ary)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.String name, java.lang.Object obj)
          Writes logging output, with black foreground on the default background.
static boolean black(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with black foreground on the default background.
static boolean blink(byte b)
          Writes logging output, with blink foreground on the default background.
static boolean blink(byte[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(char c)
          Writes logging output, with blink foreground on the default background.
static boolean blink(char[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(double d)
          Writes logging output, with blink foreground on the default background.
static boolean blink(double[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(float f)
          Writes logging output, with blink foreground on the default background.
static boolean blink(float[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(int i)
          Writes logging output, with blink foreground on the default background.
static boolean blink(int[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(long l)
          Writes logging output, with blink foreground on the default background.
static boolean blink(long[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.Object obj)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.Object[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with blink foreground on the default background.
static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.String msg)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.String name, byte b)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.String name, byte[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.String name, char c)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.String name, char[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.String name, double d)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.String name, double[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.String name, float f)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.String name, float[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.String name, int i)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.String name, int[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.String name, long l)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.String name, long[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.String name, java.lang.Object obj)
          Writes logging output, with blink foreground on the default background.
static boolean blink(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with blink foreground on the default background.
static boolean blue(byte b)
          Writes logging output, with blue foreground on the default background.
static boolean blue(byte[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(char c)
          Writes logging output, with blue foreground on the default background.
static boolean blue(char[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(double d)
          Writes logging output, with blue foreground on the default background.
static boolean blue(double[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(float f)
          Writes logging output, with blue foreground on the default background.
static boolean blue(float[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(int i)
          Writes logging output, with blue foreground on the default background.
static boolean blue(int[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(long l)
          Writes logging output, with blue foreground on the default background.
static boolean blue(long[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.Object obj)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.Object[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with blue foreground on the default background.
static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.String msg)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.String name, byte b)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.String name, byte[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.String name, char c)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.String name, char[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.String name, double d)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.String name, double[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.String name, float f)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.String name, float[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.String name, int i)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.String name, int[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.String name, long l)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.String name, long[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.String name, java.lang.Object obj)
          Writes logging output, with blue foreground on the default background.
static boolean blue(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with blue foreground on the default background.
static boolean bold(byte b)
          Writes logging output, with bold foreground on the default background.
static boolean bold(byte[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(char c)
          Writes logging output, with bold foreground on the default background.
static boolean bold(char[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(double d)
          Writes logging output, with bold foreground on the default background.
static boolean bold(double[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(float f)
          Writes logging output, with bold foreground on the default background.
static boolean bold(float[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(int i)
          Writes logging output, with bold foreground on the default background.
static boolean bold(int[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(long l)
          Writes logging output, with bold foreground on the default background.
static boolean bold(long[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.Object obj)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.Object[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with bold foreground on the default background.
static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.String msg)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.String name, byte b)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.String name, byte[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.String name, char c)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.String name, char[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.String name, double d)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.String name, double[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.String name, float f)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.String name, float[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.String name, int i)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.String name, int[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.String name, long l)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.String name, long[] ary)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.String name, java.lang.Object obj)
          Writes logging output, with bold foreground on the default background.
static boolean bold(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with bold foreground on the default background.
static void clear()
           
static void clearClassColor(java.lang.String className)
           
static boolean concealed(byte b)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(byte[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(char c)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(char[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(double d)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(double[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(float f)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(float[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(int i)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(int[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(long l)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(long[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.Object obj)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.Object[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.String msg)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.String name, byte b)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.String name, byte[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.String name, char c)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.String name, char[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.String name, double d)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.String name, double[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.String name, float f)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.String name, float[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.String name, int i)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.String name, int[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.String name, long l)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.String name, long[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.String name, java.lang.Object obj)
          Writes logging output, with concealed foreground on the default background.
static boolean concealed(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with concealed foreground on the default background.
static boolean cyan(byte b)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(byte[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(char c)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(char[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(double d)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(double[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(float f)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(float[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(int i)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(int[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(long l)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(long[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.Object obj)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.Object[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.String msg)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.String name, byte b)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.String name, byte[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.String name, char c)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.String name, char[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.String name, double d)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.String name, double[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.String name, float f)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.String name, float[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.String name, int i)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.String name, int[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.String name, long l)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.String name, long[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.String name, java.lang.Object obj)
          Writes logging output, with cyan foreground on the default background.
static boolean cyan(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with cyan foreground on the default background.
static boolean end()
           
static boolean end(java.lang.String msg)
           
static int findStackStart(java.lang.StackTraceElement[] stack)
           
protected static java.lang.StackTraceElement[] getStack(int depth)
           
static boolean green(byte b)
          Writes logging output, with green foreground on the default background.
static boolean green(byte[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(char c)
          Writes logging output, with green foreground on the default background.
static boolean green(char[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(double d)
          Writes logging output, with green foreground on the default background.
static boolean green(double[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(float f)
          Writes logging output, with green foreground on the default background.
static boolean green(float[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(int i)
          Writes logging output, with green foreground on the default background.
static boolean green(int[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(long l)
          Writes logging output, with green foreground on the default background.
static boolean green(long[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.Object obj)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.Object[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with green foreground on the default background.
static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.String msg)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.String name, byte b)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.String name, byte[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.String name, char c)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.String name, char[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.String name, double d)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.String name, double[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.String name, float f)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.String name, float[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.String name, int i)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.String name, int[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.String name, long l)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.String name, long[] ary)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.String name, java.lang.Object obj)
          Writes logging output, with green foreground on the default background.
static boolean green(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with green foreground on the default background.
static boolean isLoggable(org.incava.qualog.QlLevel level)
           
static boolean log()
          Writes an empty log message.
static boolean log(ANSIColor[] colors, byte b)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, byte[] ary)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, char c)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, char[] ary)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, double d)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, double[] ary)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, float f)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, float[] ary)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, int i)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, int[] ary)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, long l)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, long[] ary)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.Object obj)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.Object[] ary)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.String msg)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.String name, byte b)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.String name, byte[] ary)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.String name, char c)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.String name, char[] ary)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.String name, double d)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.String name, double[] ary)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.String name, float f)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.String name, float[] ary)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.String name, int i)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.String name, int[] ary)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.String name, long l)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.String name, long[] ary)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.String name, java.lang.Object obj)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor[] colors, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the specified colors.
static boolean log(ANSIColor color, byte b)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, byte[] ary)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, char c)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, char[] ary)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, double d)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, double[] ary)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, float f)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, float[] ary)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, int i)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, int[] ary)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, long l)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, long[] ary)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.Object obj)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.Object[] ary)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.String msg)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.String name, byte b)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.String name, byte[] ary)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.String name, char c)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.String name, char[] ary)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.String name, double d)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.String name, double[] ary)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.String name, float f)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.String name, float[] ary)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.String name, int i)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.String name, int[] ary)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.String name, long l)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.String name, long[] ary)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.String name, java.lang.Object obj)
          Writes logging output, with the specified color.
static boolean log(ANSIColor color, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the specified color.
static boolean log(byte b)
          Writes logging output, with the default foreground and background.
static boolean log(byte[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(char c)
          Writes logging output, with the default foreground and background.
static boolean log(char[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(double d)
          Writes logging output, with the default foreground and background.
static boolean log(double[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(float f)
          Writes logging output, with the default foreground and background.
static boolean log(float[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(int i)
          Writes logging output, with the default foreground and background.
static boolean log(int[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(long l)
          Writes logging output, with the default foreground and background.
static boolean log(long[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.Object obj)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.Object[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, byte b)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, byte[] ary)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, char c)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, char[] ary)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, double d)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, double[] ary)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, float f)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, float[] ary)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, int i)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, int[] ary)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, long l)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, long[] ary)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.Object obj)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.Object[] ary)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String msg)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, byte b)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, byte[] ary)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, char c)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, char[] ary)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, double d)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, double[] ary)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, float f)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, float[] ary)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, int i)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, int[] ary)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, long l)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, long[] ary)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, java.lang.Object obj)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the specified colors.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, byte b)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, byte[] ary)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, char c)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, char[] ary)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, double d)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, double[] ary)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, float f)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, float[] ary)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, int i)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, int[] ary)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, long l)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, long[] ary)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.Object obj)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.Object[] ary)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String msg)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, byte b)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, byte[] ary)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, char c)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, char[] ary)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, double d)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, double[] ary)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, float f)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, float[] ary)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, int i)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, int[] ary)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, long l)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, long[] ary)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, java.lang.Object obj)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the specified color.
static boolean log(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground and background.
static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.String msg)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.String name, byte b)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.String name, char c)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.String name, char[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.String name, double d)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.String name, double[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.String name, float f)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.String name, float[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.String name, int i)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.String name, int[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.String name, long l)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.String name, long[] ary)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground and background.
static boolean log(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground and background.
static boolean magenta(byte b)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(byte[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(char c)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(char[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(double d)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(double[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(float f)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(float[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(int i)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(int[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(long l)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(long[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.Object obj)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.Object[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.String msg)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.String name, byte b)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.String name, byte[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.String name, char c)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.String name, char[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.String name, double d)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.String name, double[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.String name, float f)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.String name, float[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.String name, int i)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.String name, int[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.String name, long l)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.String name, long[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.String name, java.lang.Object obj)
          Writes logging output, with magenta foreground on the default background.
static boolean magenta(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with magenta foreground on the default background.
static boolean none(byte b)
          Writes logging output, with none foreground on the default background.
static boolean none(byte[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(char c)
          Writes logging output, with none foreground on the default background.
static boolean none(char[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(double d)
          Writes logging output, with none foreground on the default background.
static boolean none(double[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(float f)
          Writes logging output, with none foreground on the default background.
static boolean none(float[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(int i)
          Writes logging output, with none foreground on the default background.
static boolean none(int[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(long l)
          Writes logging output, with none foreground on the default background.
static boolean none(long[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.Object obj)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.Object[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with none foreground on the default background.
static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.String msg)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.String name, byte b)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.String name, byte[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.String name, char c)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.String name, char[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.String name, double d)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.String name, double[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.String name, float f)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.String name, float[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.String name, int i)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.String name, int[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.String name, long l)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.String name, long[] ary)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.String name, java.lang.Object obj)
          Writes logging output, with none foreground on the default background.
static boolean none(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with none foreground on the default background.
static boolean onBlack(byte b)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(byte[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(char c)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(char[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(double d)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(double[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(float f)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(float[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(int i)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(int[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(long l)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(long[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.Object obj)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.Object[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.String msg)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.String name, byte b)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.String name, char c)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.String name, char[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.String name, double d)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.String name, double[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.String name, float f)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.String name, float[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.String name, int i)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.String name, int[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.String name, long l)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.String name, long[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground on a black background.
static boolean onBlack(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a black background.
static boolean onBlue(byte b)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(byte[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(char c)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(char[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(double d)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(double[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(float f)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(float[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(int i)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(int[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(long l)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(long[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.Object obj)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.Object[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.String msg)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.String name, byte b)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.String name, char c)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.String name, char[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.String name, double d)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.String name, double[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.String name, float f)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.String name, float[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.String name, int i)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.String name, int[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.String name, long l)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.String name, long[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground on a blue background.
static boolean onBlue(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a blue background.
static boolean onCyan(byte b)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(byte[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(char c)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(char[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(double d)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(double[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(float f)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(float[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(int i)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(int[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(long l)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(long[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.Object obj)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.Object[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.String msg)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.String name, byte b)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.String name, char c)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.String name, char[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.String name, double d)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.String name, double[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.String name, float f)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.String name, float[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.String name, int i)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.String name, int[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.String name, long l)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.String name, long[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground on a cyan background.
static boolean onCyan(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a cyan background.
static boolean onGreen(byte b)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(byte[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(char c)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(char[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(double d)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(double[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(float f)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(float[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(int i)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(int[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(long l)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(long[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.Object obj)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.Object[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.String msg)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.String name, byte b)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.String name, char c)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.String name, char[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.String name, double d)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.String name, double[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.String name, float f)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.String name, float[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.String name, int i)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.String name, int[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.String name, long l)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.String name, long[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground on a green background.
static boolean onGreen(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a green background.
static boolean onMagenta(byte b)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(byte[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(char c)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(char[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(double d)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(double[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(float f)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(float[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(int i)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(int[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(long l)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(long[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.Object obj)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.Object[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.String msg)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.String name, byte b)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.String name, char c)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.String name, char[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.String name, double d)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.String name, double[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.String name, float f)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.String name, float[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.String name, int i)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.String name, int[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.String name, long l)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.String name, long[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground on a magenta background.
static boolean onMagenta(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a magenta background.
static boolean onRed(byte b)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(byte[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(char c)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(char[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(double d)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(double[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(float f)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(float[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(int i)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(int[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(long l)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(long[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.Object obj)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.Object[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.String msg)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.String name, byte b)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.String name, char c)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.String name, char[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.String name, double d)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.String name, double[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.String name, float f)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.String name, float[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.String name, int i)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.String name, int[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.String name, long l)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.String name, long[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground on a red background.
static boolean onRed(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a red background.
static boolean onWhite(byte b)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(byte[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(char c)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(char[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(double d)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(double[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(float f)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(float[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(int i)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(int[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(long l)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(long[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.Object obj)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.Object[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.String msg)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.String name, byte b)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.String name, char c)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.String name, char[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.String name, double d)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.String name, double[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.String name, float f)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.String name, float[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.String name, int i)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.String name, int[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.String name, long l)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.String name, long[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground on a white background.
static boolean onWhite(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a white background.
static boolean onYellow(byte b)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(byte[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(char c)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(char[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(double d)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(double[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(float f)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(float[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(int i)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(int[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(long l)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(long[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.Object obj)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.Object[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.String msg)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.String name, byte b)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.String name, byte[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.String name, char c)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.String name, char[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.String name, double d)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.String name, double[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.String name, float f)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.String name, float[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.String name, int i)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.String name, int[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.String name, long l)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.String name, long[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.String name, java.lang.Object obj)
          Writes logging output, with the default foreground on a yellow background.
static boolean onYellow(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with the default foreground on a yellow background.
static boolean red(byte b)
          Writes logging output, with red foreground on the default background.
static boolean red(byte[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(char c)
          Writes logging output, with red foreground on the default background.
static boolean red(char[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(double d)
          Writes logging output, with red foreground on the default background.
static boolean red(double[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(float f)
          Writes logging output, with red foreground on the default background.
static boolean red(float[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(int i)
          Writes logging output, with red foreground on the default background.
static boolean red(int[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(long l)
          Writes logging output, with red foreground on the default background.
static boolean red(long[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.Object obj)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.Object[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with red foreground on the default background.
static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.String msg)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.String name, byte b)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.String name, byte[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.String name, char c)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.String name, char[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.String name, double d)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.String name, double[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.String name, float f)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.String name, float[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.String name, int i)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.String name, int[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.String name, long l)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.String name, long[] ary)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.String name, java.lang.Object obj)
          Writes logging output, with red foreground on the default background.
static boolean red(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with red foreground on the default background.
static void reset()
           
static boolean reverse(byte b)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(byte[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(char c)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(char[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(double d)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(double[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(float f)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(float[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(int i)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(int[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(long l)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(long[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.Object obj)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.Object[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.String msg)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.String name, byte b)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.String name, byte[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.String name, char c)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.String name, char[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.String name, double d)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.String name, double[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.String name, float f)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.String name, float[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.String name, int i)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.String name, int[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.String name, long l)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.String name, long[] ary)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.String name, java.lang.Object obj)
          Writes logging output, with reverse foreground on the default background.
static boolean reverse(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with reverse foreground on the default background.
static void set(boolean columns, int fileWidth, int lineWidth, int classWidth, int funcWidth)
           
static void setClassColor(ANSIColor color)
           
static void setClassColor(java.lang.String className, ANSIColor color)
           
static void setClassWidth(int classWidth)
           
static void setColumns(boolean cols)
           
static void setDisabled(java.lang.Class cls)
           
static void setFileColor(ANSIColor color)
           
static void setFileColor(java.lang.String fileName, ANSIColor color)
           
static void setFileWidth(int fileWidth)
           
static void setFunctionWidth(int functionWidth)
           
static void setLineWidth(int lineWidth)
           
static void setMethodColor(java.lang.String methodName, ANSIColor color)
           
static void setMethodColor(java.lang.String className, java.lang.String methodName, ANSIColor color)
           
static void setOut(java.io.PrintWriter out)
           
static void setOutput(int type, org.incava.qualog.QlLevel level)
           
static void setPackageColor(ANSIColor color)
           
static void setPackageColor(java.lang.String pkg, ANSIColor color)
           
static void setQuiet(boolean quiet)
           
static void setQuiet(org.incava.qualog.QlLevel level)
           
static void setVerbose(boolean verbose)
           
static boolean stack()
          Writes an empty stack message.
static boolean stack(ANSIColor[] colors, byte b)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, byte[] ary)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, byte[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, byte b, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, char c)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, char[] ary)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, char[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, char c, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, double d)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, double[] ary)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, double[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, double d, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, float f)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, float[] ary)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, float[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, float f, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, int i)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, int[] ary)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, int[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, int i, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, long l)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, long[] ary)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, long[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, long l, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.Object obj)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.Object[] ary)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.Object[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.Object obj, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String msg)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] msgColors, java.lang.String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
           
static boolean stack(ANSIColor[] colors, java.lang.String name, byte b)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, byte[] ary)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, byte[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, byte b, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, char c)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, char[] ary)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, char[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, char c, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, double d)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, double[] ary)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, double[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, double d, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, float f)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, float[] ary)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, float[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, float f, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, int i)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, int[] ary)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, int[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, int i, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, long l)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, long[] ary)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, long[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, long l, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, java.lang.Object obj)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, java.lang.Object[] ary)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, java.lang.Object[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor[] colors, java.lang.String name, java.lang.Object obj, int depth)
          Writes stack output, with the specified colors.
static boolean stack(ANSIColor color, byte b)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, byte[] ary)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, byte[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, byte b, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, char c)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, char[] ary)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, char[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, char c, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, double d)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, double[] ary)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, double[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, double d, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, float f)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, float[] ary)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, float[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, float f, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, int i)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, int[] ary)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, int[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, int i, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, long l)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, long[] ary)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, long[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, long l, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.Object obj)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.Object[] ary)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.Object[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.Object obj, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String msg)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, byte b)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, byte[] ary)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, byte[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, byte b, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, char c)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, char[] ary)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, char[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, char c, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, double d)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, double[] ary)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, double[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, double d, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, float f)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, float[] ary)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, float[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, float f, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, int i)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, int[] ary)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, int[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, int i, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, long l)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, long[] ary)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, long[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, long l, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, java.lang.Object obj)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, java.lang.Object[] ary)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, java.lang.Object[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(ANSIColor color, java.lang.String name, java.lang.Object obj, int depth)
          Writes stack output, with the specified color.
static boolean stack(byte b)
          Writes stack output, with the default foreground and background.
static boolean stack(byte[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(byte[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(byte b, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(char c)
          Writes stack output, with the default foreground and background.
static boolean stack(char[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(char[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(char c, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(double d)
          Writes stack output, with the default foreground and background.
static boolean stack(double[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(double[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(double d, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(float f)
          Writes stack output, with the default foreground and background.
static boolean stack(float[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(float[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(float f, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(int i)
          Writes stack output, with the default foreground and background.
static boolean stack(int[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(int[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(int i, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(long l)
          Writes stack output, with the default foreground and background.
static boolean stack(long[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(long[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(long l, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.Object obj)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.Object[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.Object[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.Object obj, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, byte b)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, byte[] ary)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, byte[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, byte b, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, char c)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, char[] ary)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, char[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, char c, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, double d)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, double[] ary)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, double[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, double d, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, float f)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, float[] ary)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, float[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, float f, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, int i)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, int[] ary)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, int[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, int i, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, long l)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, long[] ary)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, long[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, long l, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.Object obj)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.Object[] ary)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.Object[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.Object obj, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String msg)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel lvl, ANSIColor[] msgColor, java.lang.String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
           
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, byte b)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, byte[] ary)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, byte[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, byte b, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, char c)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, char[] ary)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, char[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, char c, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, double d)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, double[] ary)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, double[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, double d, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, float f)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, float[] ary)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, float[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, float f, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, int i)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, int[] ary)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, int[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, int i, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, long l)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, long[] ary)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, long[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, long l, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, java.lang.Object obj)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, java.lang.Object[] ary)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, java.lang.Object[] ary, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] msgColors, java.lang.String name, java.lang.Object obj, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
           
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, java.lang.Object obj, int depth)
          Writes stack output, with the specified colors.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, byte b)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, byte[] ary)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, byte[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, byte b, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, char c)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, char[] ary)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, char[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, char c, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, double d)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, double[] ary)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, double[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, double d, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, float f)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, float[] ary)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, float[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, float f, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, int i)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, int[] ary)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, int[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, int i, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, long l)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, long[] ary)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, long[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, long l, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.Object obj)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.Object[] ary)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.Object[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.Object obj, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String msg)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor msgColor, java.lang.String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
           
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, byte b)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, byte[] ary)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, byte[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, byte b, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, char c)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, char[] ary)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, char[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, char c, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, double d)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, double[] ary)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, double[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, double d, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, float f)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, float[] ary)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, float[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, float f, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, int i)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, int[] ary)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, int[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, int i, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, long l)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, long[] ary)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, long[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, long l, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, java.lang.Object obj)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, java.lang.Object[] ary)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, java.lang.Object[] ary, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, java.lang.Object obj, int depth)
          Writes stack output, with the specified color.
static boolean stack(org.incava.qualog.QlLevel level, byte b)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, byte[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, byte[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, byte b, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, char c)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, char[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, char[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, char c, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, double d)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, double[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, double[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, double d, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, float f)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, float[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, float[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, float f, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, int i)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, int[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, int[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, int i, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, long l)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, long[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, long[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, long l, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.Object[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.Object obj, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, byte b, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, char c, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, double d, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, float f, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, int i, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, long l, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String msg)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, byte b)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, byte[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, byte[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, byte b, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, char c)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, char[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, char[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, char c, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, double d)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, double[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, double[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, double d, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, float f)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, float[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, float[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, float f, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, int i)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, int[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, int[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, int i, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, long l)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, long[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, long[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, long l, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, java.lang.Object obj)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, java.lang.Object[] ary)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, java.lang.Object[] ary, int depth)
          Writes stack output, with the default foreground and background.
static boolean stack(java.lang.String name, java.lang.Object obj, int depth)
          Writes stack output, with the default foreground and background.
static boolean start()
           
static boolean start(java.lang.String msg)
           
static boolean time()
           
static boolean time(java.lang.String msg)
           
static boolean underline(byte b)
          Writes logging output, with underline foreground on the default background.
static boolean underline(byte[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(char c)
          Writes logging output, with underline foreground on the default background.
static boolean underline(char[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(double d)
          Writes logging output, with underline foreground on the default background.
static boolean underline(double[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(float f)
          Writes logging output, with underline foreground on the default background.
static boolean underline(float[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(int i)
          Writes logging output, with underline foreground on the default background.
static boolean underline(int[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(long l)
          Writes logging output, with underline foreground on the default background.
static boolean underline(long[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.Object obj)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.Object[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with underline foreground on the default background.
static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.String msg)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.String name, byte b)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.String name, byte[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.String name, char c)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.String name, char[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.String name, double d)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.String name, double[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.String name, float f)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.String name, float[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.String name, int i)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.String name, int[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.String name, long l)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.String name, long[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.String name, java.lang.Object obj)
          Writes logging output, with underline foreground on the default background.
static boolean underline(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with underline foreground on the default background.
static boolean underscore(byte b)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(byte[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(char c)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(char[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(double d)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(double[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(float f)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(float[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(int i)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(int[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(long l)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(long[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.Object obj)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.Object[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.String msg)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.String name, byte b)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.String name, byte[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.String name, char c)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.String name, char[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.String name, double d)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.String name, double[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.String name, float f)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.String name, float[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.String name, int i)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.String name, int[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.String name, long l)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.String name, long[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.String name, java.lang.Object obj)
          Writes logging output, with underscore foreground on the default background.
static boolean underscore(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with underscore foreground on the default background.
static boolean verbose()
           
static boolean white(byte b)
          Writes logging output, with white foreground on the default background.
static boolean white(byte[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(char c)
          Writes logging output, with white foreground on the default background.
static boolean white(char[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(double d)
          Writes logging output, with white foreground on the default background.
static boolean white(double[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(float f)
          Writes logging output, with white foreground on the default background.
static boolean white(float[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(int i)
          Writes logging output, with white foreground on the default background.
static boolean white(int[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(long l)
          Writes logging output, with white foreground on the default background.
static boolean white(long[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.Object obj)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.Object[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with white foreground on the default background.
static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.String msg)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.String name, byte b)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.String name, byte[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.String name, char c)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.String name, char[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.String name, double d)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.String name, double[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.String name, float f)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.String name, float[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.String name, int i)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.String name, int[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.String name, long l)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.String name, long[] ary)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.String name, java.lang.Object obj)
          Writes logging output, with white foreground on the default background.
static boolean white(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with white foreground on the default background.
static boolean yellow(byte b)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(byte[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(char c)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(char[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(double d)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(double[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(float f)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(float[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(int i)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(int[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(long l)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(long[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.Object obj)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.Object[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, byte b)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, byte[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, char c)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, char[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, double d)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, double[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, float f)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, float[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, int i)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, int[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, long l)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, long[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.Object obj)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String msg)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, char c)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, double d)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, float f)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, int i)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, long l)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.String msg)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.String name, byte b)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.String name, byte[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.String name, char c)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.String name, char[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.String name, double d)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.String name, double[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.String name, float f)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.String name, float[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.String name, int i)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.String name, int[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.String name, long l)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.String name, long[] ary)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.String name, java.lang.Object obj)
          Writes logging output, with yellow foreground on the default background.
static boolean yellow(java.lang.String name, java.lang.Object[] ary)
          Writes logging output, with yellow foreground on the default background.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

VERSION

public static final java.lang.String VERSION
The version of the Qualog module.

See Also:
Constant Field Values

NO_COLORS

public static final ANSIColor[] NO_COLORS
An array denoting no colors.


NO_COLOR

public static final ANSIColor NO_COLOR
An object denoting no color.


NONE

public static final ANSIColor NONE
The code for no color applied.


RESET

public static final ANSIColor RESET
The code for reset of colors and decorations.


BOLD

public static final ANSIColor BOLD
The code for bold decoration.


UNDERSCORE

public static final ANSIColor UNDERSCORE
The code for underscore (AKA underline).


UNDERLINE

public static final ANSIColor UNDERLINE
The code for underline (AKA underscore).


BLINK

public static final ANSIColor BLINK
The code for the blink attribute.


REVERSE

public static final ANSIColor REVERSE
The code for reversed text.


CONCEALED

public static final ANSIColor CONCEALED
The code for hidden text.


BLACK

public static final ANSIColor BLACK
The code for black text.


RED

public static final ANSIColor RED
The code for red text.


GREEN

public static final ANSIColor GREEN
The code for green text.


YELLOW

public static final ANSIColor YELLOW
The code for yellow text.


BLUE

public static final ANSIColor BLUE
The code for blue text.


MAGENTA

public static final ANSIColor MAGENTA
The code for magenta text.


CYAN

public static final ANSIColor CYAN
The code for cyan text.


WHITE

public static final ANSIColor WHITE
The code for white text.


ON_BLACK

public static final ANSIColor ON_BLACK
The code for black background.


ON_RED

public static final ANSIColor ON_RED
The code for red background.


ON_GREEN

public static final ANSIColor ON_GREEN
The code for green background.


ON_YELLOW

public static final ANSIColor ON_YELLOW
The code for yellow background.


ON_BLUE

public static final ANSIColor ON_BLUE
The code for blue background.


ON_MAGENTA

public static final ANSIColor ON_MAGENTA
The code for magenta background.


ON_CYAN

public static final ANSIColor ON_CYAN
The code for cyan background.


ON_WHITE

public static final ANSIColor ON_WHITE
The code for white background.


CLASS_WIDTH_PROPERTY_KEY

public static final java.lang.String CLASS_WIDTH_PROPERTY_KEY
See Also:
Constant Field Values

COLUMNAR_PROPERTY_KEY

public static final java.lang.String COLUMNAR_PROPERTY_KEY
See Also:
Constant Field Values

FILE_WIDTH_PROPERTY_KEY

public static final java.lang.String FILE_WIDTH_PROPERTY_KEY
See Also:
Constant Field Values

LEVEL_PROPERTY_KEY

public static final java.lang.String LEVEL_PROPERTY_KEY
See Also:
Constant Field Values

LINE_WIDTH_PROPERTY_KEY

public static final java.lang.String LINE_WIDTH_PROPERTY_KEY
See Also:
Constant Field Values

METHOD_WIDTH_PROPERTY_KEY

public static final java.lang.String METHOD_WIDTH_PROPERTY_KEY
See Also:
Constant Field Values

SHOW_CLASSES_PROPERTY_KEY

public static final java.lang.String SHOW_CLASSES_PROPERTY_KEY
See Also:
Constant Field Values

SHOW_FILES_PROPERTY_KEY

public static final java.lang.String SHOW_FILES_PROPERTY_KEY
See Also:
Constant Field Values

VERBOSE_PROPERTY_KEY

public static final java.lang.String VERBOSE_PROPERTY_KEY
See Also:
Constant Field Values

LEVEL0

public static final org.incava.qualog.QlLevel LEVEL0

LEVEL1

public static final org.incava.qualog.QlLevel LEVEL1

LEVEL2

public static final org.incava.qualog.QlLevel LEVEL2

LEVEL3

public static final org.incava.qualog.QlLevel LEVEL3

LEVEL4

public static final org.incava.qualog.QlLevel LEVEL4

LEVEL5

public static final org.incava.qualog.QlLevel LEVEL5

LEVEL6

public static final org.incava.qualog.QlLevel LEVEL6

LEVEL7

public static final org.incava.qualog.QlLevel LEVEL7

LEVEL8

public static final org.incava.qualog.QlLevel LEVEL8

LEVEL9

public static final org.incava.qualog.QlLevel LEVEL9

NO_OUTPUT

public static final int NO_OUTPUT
See Also:
Constant Field Values

QUIET

public static final int QUIET
See Also:
Constant Field Values

VERBOSE

public static final int VERBOSE
See Also:
Constant Field Values

DEFAULT_STACK_DEPTH

protected static final int DEFAULT_STACK_DEPTH
The default number of stack trace elements to display in a stack.

See Also:
Constant Field Values

writer

protected static QlWriter writer

timer

protected static QlTimer timer
Constructor Detail

Qualog

public Qualog()
Method Detail

isLoggable

public static boolean isLoggable(org.incava.qualog.QlLevel level)

setDisabled

public static void setDisabled(java.lang.Class cls)

addFilter

public static void addFilter(QlFilter filter)

setOut

public static void setOut(java.io.PrintWriter out)

setFileWidth

public static void setFileWidth(int fileWidth)

setClassWidth

public static void setClassWidth(int classWidth)

setLineWidth

public static void setLineWidth(int lineWidth)

setFunctionWidth

public static void setFunctionWidth(int functionWidth)

setClassColor

public static void setClassColor(java.lang.String className,
                                 ANSIColor color)

setClassColor

public static void setClassColor(ANSIColor color)

setPackageColor

public static void setPackageColor(ANSIColor color)

setPackageColor

public static void setPackageColor(java.lang.String pkg,
                                   ANSIColor color)

setMethodColor

public static void setMethodColor(java.lang.String methodName,
                                  ANSIColor color)

setMethodColor

public static void setMethodColor(java.lang.String className,
                                  java.lang.String methodName,
                                  ANSIColor color)

clearClassColor

public static void clearClassColor(java.lang.String className)

setFileColor

public static void setFileColor(java.lang.String fileName,
                                ANSIColor color)

setFileColor

public static void setFileColor(ANSIColor color)

set

public static void set(boolean columns,
                       int fileWidth,
                       int lineWidth,
                       int classWidth,
                       int funcWidth)

setVerbose

public static void setVerbose(boolean verbose)

setQuiet

public static void setQuiet(boolean quiet)

setOutput

public static void setOutput(int type,
                             org.incava.qualog.QlLevel level)

setQuiet

public static void setQuiet(org.incava.qualog.QlLevel level)

verbose

public static boolean verbose()

setColumns

public static void setColumns(boolean cols)

addClassSkipped

public static void addClassSkipped(java.lang.Class cls)

addClassSkipped

public static void addClassSkipped(java.lang.String clsName)

reset

public static void reset()

clear

public static void clear()

findStackStart

public static int findStackStart(java.lang.StackTraceElement[] stack)

time

public static boolean time(java.lang.String msg)

time

public static boolean time()

start

public static boolean start(java.lang.String msg)

start

public static boolean start()

end

public static boolean end(java.lang.String msg)

end

public static boolean end()

stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] msgColors,
                            java.lang.String name,
                            java.lang.Object obj,
                            ANSIColor fileColor,
                            ANSIColor classColor,
                            ANSIColor methodColor,
                            int numFrames)

stack

public static boolean stack(ANSIColor[] msgColors,
                            java.lang.String msg,
                            ANSIColor fileColor,
                            ANSIColor classColor,
                            ANSIColor methodColor,
                            int numFrames)

stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor msgColor,
                            java.lang.String msg,
                            ANSIColor fileColor,
                            ANSIColor classColor,
                            ANSIColor methodColor,
                            int numFrames)

stack

public static boolean stack(org.incava.qualog.QlLevel lvl,
                            ANSIColor[] msgColor,
                            java.lang.String msg,
                            ANSIColor fileColor,
                            ANSIColor classColor,
                            ANSIColor methodColor,
                            int numFrames)

log

public static boolean log()
Writes an empty log message.


stack

public static boolean stack()
Writes an empty stack message.


stack

public static boolean stack(java.lang.String msg)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String msg)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String msg)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String msg)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String msg)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String msg)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.Object obj)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.Object obj)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.Object obj)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.Object obj)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.Object obj)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.Object obj)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            java.lang.Object obj)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            java.lang.Object obj)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            java.lang.Object obj)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            java.lang.Object obj)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            java.lang.Object obj)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            java.lang.Object obj)
Writes stack output, with the specified colors.


stack

public static boolean stack(byte b)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            byte b)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            byte b)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            byte b)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            byte b)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            byte b)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            byte b)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            byte b)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            byte b)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            byte b)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            byte b)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            byte b)
Writes stack output, with the specified colors.


stack

public static boolean stack(char c)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            char c)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            char c)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            char c)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            char c)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            char c)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            char c)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            char c)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            char c)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            char c)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            char c)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            char c)
Writes stack output, with the specified colors.


stack

public static boolean stack(double d)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            double d)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            double d)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            double d)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            double d)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            double d)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            double d)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            double d)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            double d)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            double d)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            double d)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            double d)
Writes stack output, with the specified colors.


stack

public static boolean stack(float f)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            float f)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            float f)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            float f)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            float f)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            float f)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            float f)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            float f)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            float f)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            float f)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            float f)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            float f)
Writes stack output, with the specified colors.


stack

public static boolean stack(int i)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            int i)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            int i)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            int i)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            int i)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            int i)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            int i)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            int i)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            int i)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            int i)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            int i)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            int i)
Writes stack output, with the specified colors.


stack

public static boolean stack(long l)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            long l)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            long l)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            long l)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            long l)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            long l)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            long l)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            long l)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            long l)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            long l)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            long l)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            long l)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.Object[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.Object[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.Object[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.Object[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.Object[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.Object[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            java.lang.Object[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            java.lang.Object[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            java.lang.Object[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            java.lang.Object[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            java.lang.Object[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            java.lang.Object[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(byte[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            byte[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            byte[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            byte[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            byte[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            byte[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            byte[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            byte[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            byte[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            byte[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            byte[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            byte[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(char[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            char[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            char[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            char[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            char[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            char[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            char[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            char[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            char[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            char[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            char[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            char[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(double[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            double[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            double[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            double[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            double[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            double[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            double[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            double[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            double[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            double[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            double[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            double[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(float[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            float[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            float[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            float[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            float[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            float[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            float[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            float[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            float[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            float[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            float[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            float[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(int[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            int[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            int[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            int[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            int[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            int[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            int[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            int[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            int[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            int[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            int[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            int[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(long[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            long[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            long[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            long[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            long[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            long[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            long[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            long[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            long[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            long[] ary)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            long[] ary)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            long[] ary)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.Object obj,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.Object obj,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.Object obj,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.Object obj,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.Object obj,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.Object obj,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            java.lang.Object obj,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            java.lang.Object obj,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            java.lang.Object obj,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            java.lang.Object obj,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            java.lang.Object obj,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            java.lang.Object obj,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(byte b,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            byte b,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            byte b,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            byte b,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            byte b,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            byte b,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            byte b,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            byte b,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            byte b,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            byte b,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            byte b,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            byte b,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(char c,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            char c,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            char c,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            char c,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            char c,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            char c,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            char c,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            char c,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            char c,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            char c,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            char c,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            char c,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(double d,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            double d,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            double d,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            double d,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            double d,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            double d,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            double d,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            double d,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            double d,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            double d,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            double d,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            double d,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(float f,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            float f,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            float f,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            float f,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            float f,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            float f,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            float f,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            float f,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            float f,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            float f,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            float f,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            float f,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(int i,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            int i,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            int i,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            int i,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            int i,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            int i,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            int i,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            int i,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            int i,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            int i,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            int i,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            int i,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(long l,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            long l,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            long l,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            long l,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            long l,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            long l,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            long l,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            long l,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            long l,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            long l,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            long l,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            long l,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.Object[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.Object[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.Object[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.Object[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.Object[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.Object[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            java.lang.Object[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            java.lang.Object[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            java.lang.Object[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            java.lang.Object[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            java.lang.Object[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            java.lang.Object[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(byte[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            byte[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            byte[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            byte[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            byte[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            byte[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            byte[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            byte[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            byte[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            byte[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            byte[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            byte[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(char[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            char[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            char[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            char[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            char[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            char[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            char[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            char[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            char[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            char[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            char[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            char[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(double[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            double[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            double[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            double[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            double[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            double[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            double[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            double[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            double[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            double[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            double[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            double[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(float[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            float[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            float[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            float[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            float[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            float[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            float[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            float[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            float[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            float[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            float[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            float[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(int[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            int[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            int[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            int[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            int[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            int[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            int[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            int[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            int[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            int[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            int[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            int[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(long[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            long[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            long[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            long[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            long[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            long[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(java.lang.String name,
                            long[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(ANSIColor color,
                            java.lang.String name,
                            long[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(ANSIColor[] colors,
                            java.lang.String name,
                            long[] ary,
                            int depth)
Writes stack output, with the specified colors.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            long[] ary,
                            int depth)
Writes stack output, with the default foreground and background.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor color,
                            java.lang.String name,
                            long[] ary,
                            int depth)
Writes stack output, with the specified color.


stack

public static boolean stack(org.incava.qualog.QlLevel level,
                            ANSIColor[] colors,
                            java.lang.String name,
                            long[] ary,
                            int depth)
Writes stack output, with the specified colors.


none

public static boolean none(java.lang.String msg)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.String msg)
Writes logging output, with none foreground on the default background.


none

public static boolean none(java.lang.Object obj)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.Object obj)
Writes logging output, with none foreground on the default background.


none

public static boolean none(java.lang.String name,
                           java.lang.Object obj)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           java.lang.Object obj)
Writes logging output, with none foreground on the default background.


none

public static boolean none(byte b)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           byte b)
Writes logging output, with none foreground on the default background.


none

public static boolean none(java.lang.String name,
                           byte b)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           byte b)
Writes logging output, with none foreground on the default background.


none

public static boolean none(char c)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           char c)
Writes logging output, with none foreground on the default background.


none

public static boolean none(java.lang.String name,
                           char c)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           char c)
Writes logging output, with none foreground on the default background.


none

public static boolean none(double d)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           double d)
Writes logging output, with none foreground on the default background.


none

public static boolean none(java.lang.String name,
                           double d)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           double d)
Writes logging output, with none foreground on the default background.


none

public static boolean none(float f)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           float f)
Writes logging output, with none foreground on the default background.


none

public static boolean none(java.lang.String name,
                           float f)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           float f)
Writes logging output, with none foreground on the default background.


none

public static boolean none(int i)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           int i)
Writes logging output, with none foreground on the default background.


none

public static boolean none(java.lang.String name,
                           int i)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           int i)
Writes logging output, with none foreground on the default background.


none

public static boolean none(long l)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           long l)
Writes logging output, with none foreground on the default background.


none

public static boolean none(java.lang.String name,
                           long l)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           long l)
Writes logging output, with none foreground on the default background.


none

public static boolean none(java.lang.Object[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.Object[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(java.lang.String name,
                           java.lang.Object[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           java.lang.Object[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(byte[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           byte[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(java.lang.String name,
                           byte[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           byte[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(char[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           char[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(java.lang.String name,
                           char[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           char[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(double[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           double[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(java.lang.String name,
                           double[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           double[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(float[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           float[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(java.lang.String name,
                           float[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           float[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(int[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           int[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(java.lang.String name,
                           int[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           int[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(long[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           long[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(java.lang.String name,
                           long[] ary)
Writes logging output, with none foreground on the default background.


none

public static boolean none(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           long[] ary)
Writes logging output, with none foreground on the default background.


bold

public static boolean bold(java.lang.String msg)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.String msg)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(java.lang.Object obj)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.Object obj)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(java.lang.String name,
                           java.lang.Object obj)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           java.lang.Object obj)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(byte b)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           byte b)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(java.lang.String name,
                           byte b)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           byte b)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(char c)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           char c)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(java.lang.String name,
                           char c)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           char c)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(double d)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           double d)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(java.lang.String name,
                           double d)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           double d)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(float f)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           float f)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(java.lang.String name,
                           float f)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           float f)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(int i)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           int i)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(java.lang.String name,
                           int i)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           int i)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(long l)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           long l)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(java.lang.String name,
                           long l)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           long l)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(java.lang.Object[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.Object[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(java.lang.String name,
                           java.lang.Object[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           java.lang.Object[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(byte[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           byte[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(java.lang.String name,
                           byte[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           byte[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(char[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           char[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(java.lang.String name,
                           char[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           char[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(double[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           double[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(java.lang.String name,
                           double[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           double[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(float[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           float[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(java.lang.String name,
                           float[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           float[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(int[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           int[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(java.lang.String name,
                           int[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           int[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(long[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           long[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(java.lang.String name,
                           long[] ary)
Writes logging output, with bold foreground on the default background.


bold

public static boolean bold(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           long[] ary)
Writes logging output, with bold foreground on the default background.


underscore

public static boolean underscore(java.lang.String msg)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.String msg)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(java.lang.Object obj)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.Object obj)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(java.lang.String name,
                                 java.lang.Object obj)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.String name,
                                 java.lang.Object obj)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(byte b)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 byte b)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(java.lang.String name,
                                 byte b)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.String name,
                                 byte b)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(char c)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 char c)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(java.lang.String name,
                                 char c)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.String name,
                                 char c)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(double d)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 double d)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(java.lang.String name,
                                 double d)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.String name,
                                 double d)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(float f)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 float f)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(java.lang.String name,
                                 float f)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.String name,
                                 float f)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(int i)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 int i)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(java.lang.String name,
                                 int i)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.String name,
                                 int i)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(long l)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 long l)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(java.lang.String name,
                                 long l)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.String name,
                                 long l)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(java.lang.Object[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.Object[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(java.lang.String name,
                                 java.lang.Object[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.String name,
                                 java.lang.Object[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(byte[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 byte[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(java.lang.String name,
                                 byte[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.String name,
                                 byte[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(char[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 char[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(java.lang.String name,
                                 char[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.String name,
                                 char[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(double[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 double[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(java.lang.String name,
                                 double[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.String name,
                                 double[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(float[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 float[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(java.lang.String name,
                                 float[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.String name,
                                 float[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(int[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 int[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(java.lang.String name,
                                 int[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.String name,
                                 int[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(long[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 long[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(java.lang.String name,
                                 long[] ary)
Writes logging output, with underscore foreground on the default background.


underscore

public static boolean underscore(org.incava.qualog.QlLevel level,
                                 java.lang.String name,
                                 long[] ary)
Writes logging output, with underscore foreground on the default background.


underline

public static boolean underline(java.lang.String msg)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.String msg)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(java.lang.Object obj)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.Object obj)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(java.lang.String name,
                                java.lang.Object obj)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                java.lang.Object obj)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(byte b)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                byte b)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(java.lang.String name,
                                byte b)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                byte b)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(char c)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                char c)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(java.lang.String name,
                                char c)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                char c)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(double d)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                double d)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(java.lang.String name,
                                double d)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                double d)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(float f)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                float f)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(java.lang.String name,
                                float f)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                float f)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(int i)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                int i)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(java.lang.String name,
                                int i)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                int i)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(long l)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                long l)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(java.lang.String name,
                                long l)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                long l)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(java.lang.Object[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.Object[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(java.lang.String name,
                                java.lang.Object[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                java.lang.Object[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(byte[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                byte[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(java.lang.String name,
                                byte[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                byte[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(char[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                char[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(java.lang.String name,
                                char[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                char[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(double[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                double[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(java.lang.String name,
                                double[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                double[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(float[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                float[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(java.lang.String name,
                                float[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                float[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(int[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                int[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(java.lang.String name,
                                int[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                int[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(long[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                long[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(java.lang.String name,
                                long[] ary)
Writes logging output, with underline foreground on the default background.


underline

public static boolean underline(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                long[] ary)
Writes logging output, with underline foreground on the default background.


blink

public static boolean blink(java.lang.String msg)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.String msg)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(java.lang.Object obj)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.Object obj)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(java.lang.String name,
                            java.lang.Object obj)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            java.lang.Object obj)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(byte b)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            byte b)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(java.lang.String name,
                            byte b)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            byte b)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(char c)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            char c)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(java.lang.String name,
                            char c)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            char c)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(double d)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            double d)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(java.lang.String name,
                            double d)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            double d)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(float f)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            float f)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(java.lang.String name,
                            float f)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            float f)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(int i)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            int i)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(java.lang.String name,
                            int i)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            int i)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(long l)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            long l)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(java.lang.String name,
                            long l)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            long l)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(java.lang.Object[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.Object[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(java.lang.String name,
                            java.lang.Object[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            java.lang.Object[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(byte[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            byte[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(java.lang.String name,
                            byte[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            byte[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(char[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            char[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(java.lang.String name,
                            char[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            char[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(double[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            double[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(java.lang.String name,
                            double[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            double[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(float[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            float[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(java.lang.String name,
                            float[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            float[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(int[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            int[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(java.lang.String name,
                            int[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            int[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(long[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            long[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(java.lang.String name,
                            long[] ary)
Writes logging output, with blink foreground on the default background.


blink

public static boolean blink(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            long[] ary)
Writes logging output, with blink foreground on the default background.


reverse

public static boolean reverse(java.lang.String msg)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.String msg)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(java.lang.Object obj)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.Object obj)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(java.lang.String name,
                              java.lang.Object obj)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              java.lang.Object obj)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(byte b)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              byte b)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(java.lang.String name,
                              byte b)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              byte b)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(char c)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              char c)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(java.lang.String name,
                              char c)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              char c)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(double d)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              double d)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(java.lang.String name,
                              double d)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              double d)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(float f)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              float f)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(java.lang.String name,
                              float f)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              float f)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(int i)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              int i)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(java.lang.String name,
                              int i)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              int i)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(long l)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              long l)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(java.lang.String name,
                              long l)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              long l)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(java.lang.Object[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.Object[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(java.lang.String name,
                              java.lang.Object[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              java.lang.Object[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(byte[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              byte[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(java.lang.String name,
                              byte[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              byte[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(char[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              char[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(java.lang.String name,
                              char[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              char[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(double[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              double[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(java.lang.String name,
                              double[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              double[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(float[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              float[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(java.lang.String name,
                              float[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              float[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(int[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              int[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(java.lang.String name,
                              int[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              int[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(long[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              long[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(java.lang.String name,
                              long[] ary)
Writes logging output, with reverse foreground on the default background.


reverse

public static boolean reverse(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              long[] ary)
Writes logging output, with reverse foreground on the default background.


concealed

public static boolean concealed(java.lang.String msg)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.String msg)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(java.lang.Object obj)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.Object obj)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(java.lang.String name,
                                java.lang.Object obj)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                java.lang.Object obj)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(byte b)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                byte b)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(java.lang.String name,
                                byte b)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                byte b)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(char c)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                char c)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(java.lang.String name,
                                char c)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                char c)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(double d)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                double d)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(java.lang.String name,
                                double d)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                double d)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(float f)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                float f)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(java.lang.String name,
                                float f)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                float f)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(int i)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                int i)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(java.lang.String name,
                                int i)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                int i)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(long l)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                long l)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(java.lang.String name,
                                long l)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                long l)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(java.lang.Object[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.Object[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(java.lang.String name,
                                java.lang.Object[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                java.lang.Object[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(byte[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                byte[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(java.lang.String name,
                                byte[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                byte[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(char[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                char[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(java.lang.String name,
                                char[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                char[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(double[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                double[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(java.lang.String name,
                                double[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                double[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(float[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                float[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(java.lang.String name,
                                float[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                float[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(int[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                int[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(java.lang.String name,
                                int[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                int[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(long[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                long[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(java.lang.String name,
                                long[] ary)
Writes logging output, with concealed foreground on the default background.


concealed

public static boolean concealed(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                long[] ary)
Writes logging output, with concealed foreground on the default background.


black

public static boolean black(java.lang.String msg)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.String msg)
Writes logging output, with black foreground on the default background.


black

public static boolean black(java.lang.Object obj)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.Object obj)
Writes logging output, with black foreground on the default background.


black

public static boolean black(java.lang.String name,
                            java.lang.Object obj)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            java.lang.Object obj)
Writes logging output, with black foreground on the default background.


black

public static boolean black(byte b)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            byte b)
Writes logging output, with black foreground on the default background.


black

public static boolean black(java.lang.String name,
                            byte b)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            byte b)
Writes logging output, with black foreground on the default background.


black

public static boolean black(char c)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            char c)
Writes logging output, with black foreground on the default background.


black

public static boolean black(java.lang.String name,
                            char c)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            char c)
Writes logging output, with black foreground on the default background.


black

public static boolean black(double d)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            double d)
Writes logging output, with black foreground on the default background.


black

public static boolean black(java.lang.String name,
                            double d)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            double d)
Writes logging output, with black foreground on the default background.


black

public static boolean black(float f)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            float f)
Writes logging output, with black foreground on the default background.


black

public static boolean black(java.lang.String name,
                            float f)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            float f)
Writes logging output, with black foreground on the default background.


black

public static boolean black(int i)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            int i)
Writes logging output, with black foreground on the default background.


black

public static boolean black(java.lang.String name,
                            int i)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            int i)
Writes logging output, with black foreground on the default background.


black

public static boolean black(long l)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            long l)
Writes logging output, with black foreground on the default background.


black

public static boolean black(java.lang.String name,
                            long l)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            long l)
Writes logging output, with black foreground on the default background.


black

public static boolean black(java.lang.Object[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.Object[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(java.lang.String name,
                            java.lang.Object[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            java.lang.Object[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(byte[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            byte[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(java.lang.String name,
                            byte[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            byte[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(char[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            char[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(java.lang.String name,
                            char[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            char[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(double[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            double[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(java.lang.String name,
                            double[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            double[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(float[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            float[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(java.lang.String name,
                            float[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            float[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(int[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            int[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(java.lang.String name,
                            int[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            int[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(long[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            long[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(java.lang.String name,
                            long[] ary)
Writes logging output, with black foreground on the default background.


black

public static boolean black(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            long[] ary)
Writes logging output, with black foreground on the default background.


red

public static boolean red(java.lang.String msg)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.String msg)
Writes logging output, with red foreground on the default background.


red

public static boolean red(java.lang.Object obj)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.Object obj)
Writes logging output, with red foreground on the default background.


red

public static boolean red(java.lang.String name,
                          java.lang.Object obj)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          java.lang.Object obj)
Writes logging output, with red foreground on the default background.


red

public static boolean red(byte b)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          byte b)
Writes logging output, with red foreground on the default background.


red

public static boolean red(java.lang.String name,
                          byte b)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          byte b)
Writes logging output, with red foreground on the default background.


red

public static boolean red(char c)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          char c)
Writes logging output, with red foreground on the default background.


red

public static boolean red(java.lang.String name,
                          char c)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          char c)
Writes logging output, with red foreground on the default background.


red

public static boolean red(double d)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          double d)
Writes logging output, with red foreground on the default background.


red

public static boolean red(java.lang.String name,
                          double d)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          double d)
Writes logging output, with red foreground on the default background.


red

public static boolean red(float f)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          float f)
Writes logging output, with red foreground on the default background.


red

public static boolean red(java.lang.String name,
                          float f)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          float f)
Writes logging output, with red foreground on the default background.


red

public static boolean red(int i)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          int i)
Writes logging output, with red foreground on the default background.


red

public static boolean red(java.lang.String name,
                          int i)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          int i)
Writes logging output, with red foreground on the default background.


red

public static boolean red(long l)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          long l)
Writes logging output, with red foreground on the default background.


red

public static boolean red(java.lang.String name,
                          long l)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          long l)
Writes logging output, with red foreground on the default background.


red

public static boolean red(java.lang.Object[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.Object[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(java.lang.String name,
                          java.lang.Object[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          java.lang.Object[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(byte[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          byte[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(java.lang.String name,
                          byte[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          byte[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(char[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          char[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(java.lang.String name,
                          char[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          char[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(double[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          double[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(java.lang.String name,
                          double[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          double[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(float[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          float[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(java.lang.String name,
                          float[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          float[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(int[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          int[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(java.lang.String name,
                          int[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          int[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(long[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          long[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(java.lang.String name,
                          long[] ary)
Writes logging output, with red foreground on the default background.


red

public static boolean red(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          long[] ary)
Writes logging output, with red foreground on the default background.


green

public static boolean green(java.lang.String msg)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.String msg)
Writes logging output, with green foreground on the default background.


green

public static boolean green(java.lang.Object obj)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.Object obj)
Writes logging output, with green foreground on the default background.


green

public static boolean green(java.lang.String name,
                            java.lang.Object obj)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            java.lang.Object obj)
Writes logging output, with green foreground on the default background.


green

public static boolean green(byte b)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            byte b)
Writes logging output, with green foreground on the default background.


green

public static boolean green(java.lang.String name,
                            byte b)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            byte b)
Writes logging output, with green foreground on the default background.


green

public static boolean green(char c)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            char c)
Writes logging output, with green foreground on the default background.


green

public static boolean green(java.lang.String name,
                            char c)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            char c)
Writes logging output, with green foreground on the default background.


green

public static boolean green(double d)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            double d)
Writes logging output, with green foreground on the default background.


green

public static boolean green(java.lang.String name,
                            double d)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            double d)
Writes logging output, with green foreground on the default background.


green

public static boolean green(float f)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            float f)
Writes logging output, with green foreground on the default background.


green

public static boolean green(java.lang.String name,
                            float f)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            float f)
Writes logging output, with green foreground on the default background.


green

public static boolean green(int i)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            int i)
Writes logging output, with green foreground on the default background.


green

public static boolean green(java.lang.String name,
                            int i)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            int i)
Writes logging output, with green foreground on the default background.


green

public static boolean green(long l)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            long l)
Writes logging output, with green foreground on the default background.


green

public static boolean green(java.lang.String name,
                            long l)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            long l)
Writes logging output, with green foreground on the default background.


green

public static boolean green(java.lang.Object[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.Object[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(java.lang.String name,
                            java.lang.Object[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            java.lang.Object[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(byte[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            byte[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(java.lang.String name,
                            byte[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            byte[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(char[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            char[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(java.lang.String name,
                            char[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            char[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(double[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            double[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(java.lang.String name,
                            double[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            double[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(float[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            float[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(java.lang.String name,
                            float[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            float[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(int[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            int[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(java.lang.String name,
                            int[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            int[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(long[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            long[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(java.lang.String name,
                            long[] ary)
Writes logging output, with green foreground on the default background.


green

public static boolean green(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            long[] ary)
Writes logging output, with green foreground on the default background.


yellow

public static boolean yellow(java.lang.String msg)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.String msg)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(java.lang.Object obj)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.Object obj)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(java.lang.String name,
                             java.lang.Object obj)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             java.lang.Object obj)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(byte b)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             byte b)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(java.lang.String name,
                             byte b)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             byte b)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(char c)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             char c)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(java.lang.String name,
                             char c)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             char c)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(double d)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             double d)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(java.lang.String name,
                             double d)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             double d)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(float f)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             float f)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(java.lang.String name,
                             float f)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             float f)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(int i)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             int i)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(java.lang.String name,
                             int i)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             int i)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(long l)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             long l)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(java.lang.String name,
                             long l)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             long l)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(java.lang.Object[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.Object[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(java.lang.String name,
                             java.lang.Object[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             java.lang.Object[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(byte[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             byte[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(java.lang.String name,
                             byte[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             byte[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(char[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             char[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(java.lang.String name,
                             char[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             char[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(double[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             double[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(java.lang.String name,
                             double[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             double[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(float[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             float[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(java.lang.String name,
                             float[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             float[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(int[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             int[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(java.lang.String name,
                             int[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             int[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(long[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             long[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(java.lang.String name,
                             long[] ary)
Writes logging output, with yellow foreground on the default background.


yellow

public static boolean yellow(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             long[] ary)
Writes logging output, with yellow foreground on the default background.


blue

public static boolean blue(java.lang.String msg)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.String msg)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(java.lang.Object obj)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.Object obj)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(java.lang.String name,
                           java.lang.Object obj)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           java.lang.Object obj)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(byte b)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           byte b)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(java.lang.String name,
                           byte b)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           byte b)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(char c)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           char c)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(java.lang.String name,
                           char c)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           char c)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(double d)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           double d)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(java.lang.String name,
                           double d)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           double d)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(float f)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           float f)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(java.lang.String name,
                           float f)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           float f)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(int i)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           int i)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(java.lang.String name,
                           int i)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           int i)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(long l)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           long l)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(java.lang.String name,
                           long l)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           long l)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(java.lang.Object[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.Object[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(java.lang.String name,
                           java.lang.Object[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           java.lang.Object[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(byte[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           byte[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(java.lang.String name,
                           byte[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           byte[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(char[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           char[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(java.lang.String name,
                           char[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           char[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(double[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           double[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(java.lang.String name,
                           double[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           double[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(float[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           float[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(java.lang.String name,
                           float[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           float[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(int[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           int[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(java.lang.String name,
                           int[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           int[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(long[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           long[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(java.lang.String name,
                           long[] ary)
Writes logging output, with blue foreground on the default background.


blue

public static boolean blue(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           long[] ary)
Writes logging output, with blue foreground on the default background.


magenta

public static boolean magenta(java.lang.String msg)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.String msg)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(java.lang.Object obj)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.Object obj)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(java.lang.String name,
                              java.lang.Object obj)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              java.lang.Object obj)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(byte b)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              byte b)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(java.lang.String name,
                              byte b)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              byte b)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(char c)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              char c)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(java.lang.String name,
                              char c)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              char c)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(double d)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              double d)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(java.lang.String name,
                              double d)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              double d)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(float f)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              float f)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(java.lang.String name,
                              float f)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              float f)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(int i)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              int i)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(java.lang.String name,
                              int i)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              int i)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(long l)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              long l)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(java.lang.String name,
                              long l)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              long l)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(java.lang.Object[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.Object[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(java.lang.String name,
                              java.lang.Object[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              java.lang.Object[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(byte[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              byte[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(java.lang.String name,
                              byte[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              byte[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(char[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              char[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(java.lang.String name,
                              char[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              char[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(double[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              double[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(java.lang.String name,
                              double[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              double[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(float[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              float[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(java.lang.String name,
                              float[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              float[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(int[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              int[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(java.lang.String name,
                              int[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              int[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(long[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              long[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(java.lang.String name,
                              long[] ary)
Writes logging output, with magenta foreground on the default background.


magenta

public static boolean magenta(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              long[] ary)
Writes logging output, with magenta foreground on the default background.


cyan

public static boolean cyan(java.lang.String msg)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.String msg)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(java.lang.Object obj)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.Object obj)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(java.lang.String name,
                           java.lang.Object obj)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           java.lang.Object obj)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(byte b)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           byte b)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(java.lang.String name,
                           byte b)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           byte b)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(char c)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           char c)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(java.lang.String name,
                           char c)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           char c)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(double d)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           double d)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(java.lang.String name,
                           double d)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           double d)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(float f)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           float f)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(java.lang.String name,
                           float f)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           float f)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(int i)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           int i)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(java.lang.String name,
                           int i)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           int i)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(long l)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           long l)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(java.lang.String name,
                           long l)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           long l)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(java.lang.Object[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.Object[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(java.lang.String name,
                           java.lang.Object[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           java.lang.Object[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(byte[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           byte[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(java.lang.String name,
                           byte[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           byte[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(char[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           char[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(java.lang.String name,
                           char[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           char[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(double[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           double[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(java.lang.String name,
                           double[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           double[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(float[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           float[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(java.lang.String name,
                           float[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           float[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(int[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           int[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(java.lang.String name,
                           int[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           int[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(long[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           long[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(java.lang.String name,
                           long[] ary)
Writes logging output, with cyan foreground on the default background.


cyan

public static boolean cyan(org.incava.qualog.QlLevel level,
                           java.lang.String name,
                           long[] ary)
Writes logging output, with cyan foreground on the default background.


white

public static boolean white(java.lang.String msg)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.String msg)
Writes logging output, with white foreground on the default background.


white

public static boolean white(java.lang.Object obj)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.Object obj)
Writes logging output, with white foreground on the default background.


white

public static boolean white(java.lang.String name,
                            java.lang.Object obj)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            java.lang.Object obj)
Writes logging output, with white foreground on the default background.


white

public static boolean white(byte b)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            byte b)
Writes logging output, with white foreground on the default background.


white

public static boolean white(java.lang.String name,
                            byte b)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            byte b)
Writes logging output, with white foreground on the default background.


white

public static boolean white(char c)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            char c)
Writes logging output, with white foreground on the default background.


white

public static boolean white(java.lang.String name,
                            char c)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            char c)
Writes logging output, with white foreground on the default background.


white

public static boolean white(double d)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            double d)
Writes logging output, with white foreground on the default background.


white

public static boolean white(java.lang.String name,
                            double d)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            double d)
Writes logging output, with white foreground on the default background.


white

public static boolean white(float f)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            float f)
Writes logging output, with white foreground on the default background.


white

public static boolean white(java.lang.String name,
                            float f)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            float f)
Writes logging output, with white foreground on the default background.


white

public static boolean white(int i)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            int i)
Writes logging output, with white foreground on the default background.


white

public static boolean white(java.lang.String name,
                            int i)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            int i)
Writes logging output, with white foreground on the default background.


white

public static boolean white(long l)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            long l)
Writes logging output, with white foreground on the default background.


white

public static boolean white(java.lang.String name,
                            long l)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            long l)
Writes logging output, with white foreground on the default background.


white

public static boolean white(java.lang.Object[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.Object[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(java.lang.String name,
                            java.lang.Object[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            java.lang.Object[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(byte[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            byte[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(java.lang.String name,
                            byte[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            byte[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(char[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            char[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(java.lang.String name,
                            char[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            char[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(double[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            double[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(java.lang.String name,
                            double[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            double[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(float[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            float[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(java.lang.String name,
                            float[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            float[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(int[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            int[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(java.lang.String name,
                            int[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            int[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(long[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            long[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(java.lang.String name,
                            long[] ary)
Writes logging output, with white foreground on the default background.


white

public static boolean white(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            long[] ary)
Writes logging output, with white foreground on the default background.


onBlack

public static boolean onBlack(java.lang.String msg)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.String msg)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(java.lang.Object obj)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.Object obj)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(java.lang.String name,
                              java.lang.Object obj)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              java.lang.Object obj)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(byte b)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              byte b)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(java.lang.String name,
                              byte b)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              byte b)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(char c)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              char c)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(java.lang.String name,
                              char c)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              char c)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(double d)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              double d)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(java.lang.String name,
                              double d)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              double d)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(float f)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              float f)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(java.lang.String name,
                              float f)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              float f)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(int i)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              int i)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(java.lang.String name,
                              int i)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              int i)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(long l)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              long l)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(java.lang.String name,
                              long l)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              long l)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(java.lang.Object[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.Object[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(java.lang.String name,
                              java.lang.Object[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              java.lang.Object[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(byte[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              byte[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(java.lang.String name,
                              byte[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              byte[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(char[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              char[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(java.lang.String name,
                              char[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              char[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(double[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              double[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(java.lang.String name,
                              double[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              double[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(float[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              float[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(java.lang.String name,
                              float[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              float[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(int[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              int[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(java.lang.String name,
                              int[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              int[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(long[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              long[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(java.lang.String name,
                              long[] ary)
Writes logging output, with the default foreground on a black background.


onBlack

public static boolean onBlack(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              long[] ary)
Writes logging output, with the default foreground on a black background.


onRed

public static boolean onRed(java.lang.String msg)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.String msg)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(java.lang.Object obj)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.Object obj)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(java.lang.String name,
                            java.lang.Object obj)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            java.lang.Object obj)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(byte b)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            byte b)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(java.lang.String name,
                            byte b)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            byte b)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(char c)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            char c)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(java.lang.String name,
                            char c)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            char c)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(double d)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            double d)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(java.lang.String name,
                            double d)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            double d)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(float f)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            float f)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(java.lang.String name,
                            float f)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            float f)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(int i)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            int i)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(java.lang.String name,
                            int i)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            int i)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(long l)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            long l)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(java.lang.String name,
                            long l)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            long l)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(java.lang.Object[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.Object[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(java.lang.String name,
                            java.lang.Object[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            java.lang.Object[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(byte[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            byte[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(java.lang.String name,
                            byte[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            byte[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(char[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            char[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(java.lang.String name,
                            char[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            char[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(double[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            double[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(java.lang.String name,
                            double[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            double[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(float[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            float[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(java.lang.String name,
                            float[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            float[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(int[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            int[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(java.lang.String name,
                            int[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            int[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(long[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            long[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(java.lang.String name,
                            long[] ary)
Writes logging output, with the default foreground on a red background.


onRed

public static boolean onRed(org.incava.qualog.QlLevel level,
                            java.lang.String name,
                            long[] ary)
Writes logging output, with the default foreground on a red background.


onGreen

public static boolean onGreen(java.lang.String msg)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.String msg)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(java.lang.Object obj)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.Object obj)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(java.lang.String name,
                              java.lang.Object obj)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              java.lang.Object obj)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(byte b)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              byte b)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(java.lang.String name,
                              byte b)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              byte b)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(char c)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              char c)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(java.lang.String name,
                              char c)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              char c)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(double d)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              double d)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(java.lang.String name,
                              double d)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              double d)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(float f)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              float f)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(java.lang.String name,
                              float f)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              float f)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(int i)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              int i)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(java.lang.String name,
                              int i)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              int i)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(long l)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              long l)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(java.lang.String name,
                              long l)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              long l)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(java.lang.Object[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.Object[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(java.lang.String name,
                              java.lang.Object[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              java.lang.Object[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(byte[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              byte[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(java.lang.String name,
                              byte[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              byte[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(char[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              char[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(java.lang.String name,
                              char[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              char[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(double[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              double[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(java.lang.String name,
                              double[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              double[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(float[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              float[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(java.lang.String name,
                              float[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              float[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(int[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              int[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(java.lang.String name,
                              int[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              int[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(long[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              long[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(java.lang.String name,
                              long[] ary)
Writes logging output, with the default foreground on a green background.


onGreen

public static boolean onGreen(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              long[] ary)
Writes logging output, with the default foreground on a green background.


onYellow

public static boolean onYellow(java.lang.String msg)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.String msg)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(java.lang.Object obj)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.Object obj)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(java.lang.String name,
                               java.lang.Object obj)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.String name,
                               java.lang.Object obj)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(byte b)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               byte b)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(java.lang.String name,
                               byte b)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.String name,
                               byte b)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(char c)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               char c)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(java.lang.String name,
                               char c)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.String name,
                               char c)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(double d)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               double d)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(java.lang.String name,
                               double d)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.String name,
                               double d)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(float f)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               float f)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(java.lang.String name,
                               float f)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.String name,
                               float f)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(int i)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               int i)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(java.lang.String name,
                               int i)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.String name,
                               int i)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(long l)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               long l)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(java.lang.String name,
                               long l)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.String name,
                               long l)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(java.lang.Object[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.Object[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(java.lang.String name,
                               java.lang.Object[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.String name,
                               java.lang.Object[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(byte[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               byte[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(java.lang.String name,
                               byte[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.String name,
                               byte[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(char[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               char[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(java.lang.String name,
                               char[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.String name,
                               char[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(double[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               double[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(java.lang.String name,
                               double[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.String name,
                               double[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(float[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               float[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(java.lang.String name,
                               float[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.String name,
                               float[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(int[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               int[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(java.lang.String name,
                               int[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.String name,
                               int[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(long[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               long[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(java.lang.String name,
                               long[] ary)
Writes logging output, with the default foreground on a yellow background.


onYellow

public static boolean onYellow(org.incava.qualog.QlLevel level,
                               java.lang.String name,
                               long[] ary)
Writes logging output, with the default foreground on a yellow background.


onBlue

public static boolean onBlue(java.lang.String msg)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.String msg)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(java.lang.Object obj)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.Object obj)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(java.lang.String name,
                             java.lang.Object obj)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             java.lang.Object obj)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(byte b)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             byte b)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(java.lang.String name,
                             byte b)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             byte b)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(char c)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             char c)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(java.lang.String name,
                             char c)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             char c)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(double d)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             double d)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(java.lang.String name,
                             double d)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             double d)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(float f)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             float f)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(java.lang.String name,
                             float f)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             float f)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(int i)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             int i)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(java.lang.String name,
                             int i)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             int i)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(long l)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             long l)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(java.lang.String name,
                             long l)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             long l)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(java.lang.Object[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.Object[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(java.lang.String name,
                             java.lang.Object[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             java.lang.Object[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(byte[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             byte[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(java.lang.String name,
                             byte[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             byte[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(char[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             char[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(java.lang.String name,
                             char[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             char[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(double[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             double[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(java.lang.String name,
                             double[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             double[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(float[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             float[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(java.lang.String name,
                             float[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             float[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(int[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             int[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(java.lang.String name,
                             int[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             int[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(long[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             long[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(java.lang.String name,
                             long[] ary)
Writes logging output, with the default foreground on a blue background.


onBlue

public static boolean onBlue(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             long[] ary)
Writes logging output, with the default foreground on a blue background.


onMagenta

public static boolean onMagenta(java.lang.String msg)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.String msg)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(java.lang.Object obj)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.Object obj)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(java.lang.String name,
                                java.lang.Object obj)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                java.lang.Object obj)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(byte b)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                byte b)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(java.lang.String name,
                                byte b)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                byte b)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(char c)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                char c)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(java.lang.String name,
                                char c)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                char c)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(double d)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                double d)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(java.lang.String name,
                                double d)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                double d)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(float f)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                float f)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(java.lang.String name,
                                float f)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                float f)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(int i)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                int i)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(java.lang.String name,
                                int i)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                int i)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(long l)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                long l)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(java.lang.String name,
                                long l)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                long l)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(java.lang.Object[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.Object[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(java.lang.String name,
                                java.lang.Object[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                java.lang.Object[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(byte[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                byte[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(java.lang.String name,
                                byte[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                byte[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(char[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                char[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(java.lang.String name,
                                char[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                char[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(double[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                double[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(java.lang.String name,
                                double[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                double[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(float[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                float[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(java.lang.String name,
                                float[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                float[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(int[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                int[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(java.lang.String name,
                                int[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                int[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(long[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                long[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(java.lang.String name,
                                long[] ary)
Writes logging output, with the default foreground on a magenta background.


onMagenta

public static boolean onMagenta(org.incava.qualog.QlLevel level,
                                java.lang.String name,
                                long[] ary)
Writes logging output, with the default foreground on a magenta background.


onCyan

public static boolean onCyan(java.lang.String msg)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.String msg)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(java.lang.Object obj)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.Object obj)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(java.lang.String name,
                             java.lang.Object obj)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             java.lang.Object obj)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(byte b)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             byte b)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(java.lang.String name,
                             byte b)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             byte b)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(char c)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             char c)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(java.lang.String name,
                             char c)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             char c)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(double d)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             double d)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(java.lang.String name,
                             double d)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             double d)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(float f)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             float f)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(java.lang.String name,
                             float f)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             float f)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(int i)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             int i)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(java.lang.String name,
                             int i)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             int i)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(long l)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             long l)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(java.lang.String name,
                             long l)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             long l)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(java.lang.Object[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.Object[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(java.lang.String name,
                             java.lang.Object[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             java.lang.Object[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(byte[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             byte[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(java.lang.String name,
                             byte[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             byte[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(char[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             char[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(java.lang.String name,
                             char[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             char[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(double[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             double[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(java.lang.String name,
                             double[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             double[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(float[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             float[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(java.lang.String name,
                             float[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             float[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(int[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             int[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(java.lang.String name,
                             int[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             int[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(long[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             long[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(java.lang.String name,
                             long[] ary)
Writes logging output, with the default foreground on a cyan background.


onCyan

public static boolean onCyan(org.incava.qualog.QlLevel level,
                             java.lang.String name,
                             long[] ary)
Writes logging output, with the default foreground on a cyan background.


onWhite

public static boolean onWhite(java.lang.String msg)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.String msg)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(java.lang.Object obj)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.Object obj)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(java.lang.String name,
                              java.lang.Object obj)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              java.lang.Object obj)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(byte b)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              byte b)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(java.lang.String name,
                              byte b)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              byte b)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(char c)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              char c)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(java.lang.String name,
                              char c)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              char c)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(double d)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              double d)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(java.lang.String name,
                              double d)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              double d)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(float f)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              float f)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(java.lang.String name,
                              float f)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              float f)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(int i)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              int i)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(java.lang.String name,
                              int i)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              int i)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(long l)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              long l)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(java.lang.String name,
                              long l)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              long l)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(java.lang.Object[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.Object[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(java.lang.String name,
                              java.lang.Object[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              java.lang.Object[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(byte[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              byte[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(java.lang.String name,
                              byte[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              byte[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(char[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              char[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(java.lang.String name,
                              char[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              char[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(double[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              double[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(java.lang.String name,
                              double[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              double[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(float[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              float[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(java.lang.String name,
                              float[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              float[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(int[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              int[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(java.lang.String name,
                              int[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              int[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(long[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              long[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(java.lang.String name,
                              long[] ary)
Writes logging output, with the default foreground on a white background.


onWhite

public static boolean onWhite(org.incava.qualog.QlLevel level,
                              java.lang.String name,
                              long[] ary)
Writes logging output, with the default foreground on a white background.


log

public static boolean log(java.lang.String msg)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.String msg)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.String msg)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.String msg)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.String msg)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.String msg)
Writes logging output, with the specified colors.


log

public static boolean log(java.lang.Object obj)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.Object obj)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.Object obj)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.Object obj)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.Object obj)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.Object obj)
Writes logging output, with the specified colors.


log

public static boolean log(java.lang.String name,
                          java.lang.Object obj)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.String name,
                          java.lang.Object obj)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.String name,
                          java.lang.Object obj)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          java.lang.Object obj)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.String name,
                          java.lang.Object obj)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.String name,
                          java.lang.Object obj)
Writes logging output, with the specified colors.


log

public static boolean log(byte b)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          byte b)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          byte b)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          byte b)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          byte b)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          byte b)
Writes logging output, with the specified colors.


log

public static boolean log(java.lang.String name,
                          byte b)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.String name,
                          byte b)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.String name,
                          byte b)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          byte b)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.String name,
                          byte b)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.String name,
                          byte b)
Writes logging output, with the specified colors.


log

public static boolean log(char c)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          char c)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          char c)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          char c)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          char c)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          char c)
Writes logging output, with the specified colors.


log

public static boolean log(java.lang.String name,
                          char c)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.String name,
                          char c)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.String name,
                          char c)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          char c)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.String name,
                          char c)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.String name,
                          char c)
Writes logging output, with the specified colors.


log

public static boolean log(double d)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          double d)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          double d)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          double d)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          double d)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          double d)
Writes logging output, with the specified colors.


log

public static boolean log(java.lang.String name,
                          double d)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.String name,
                          double d)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.String name,
                          double d)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          double d)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.String name,
                          double d)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.String name,
                          double d)
Writes logging output, with the specified colors.


log

public static boolean log(float f)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          float f)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          float f)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          float f)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          float f)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          float f)
Writes logging output, with the specified colors.


log

public static boolean log(java.lang.String name,
                          float f)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.String name,
                          float f)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.String name,
                          float f)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          float f)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.String name,
                          float f)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.String name,
                          float f)
Writes logging output, with the specified colors.


log

public static boolean log(int i)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          int i)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          int i)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          int i)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          int i)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          int i)
Writes logging output, with the specified colors.


log

public static boolean log(java.lang.String name,
                          int i)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.String name,
                          int i)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.String name,
                          int i)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          int i)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.String name,
                          int i)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.String name,
                          int i)
Writes logging output, with the specified colors.


log

public static boolean log(long l)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          long l)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          long l)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          long l)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          long l)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          long l)
Writes logging output, with the specified colors.


log

public static boolean log(java.lang.String name,
                          long l)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.String name,
                          long l)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.String name,
                          long l)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          long l)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.String name,
                          long l)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.String name,
                          long l)
Writes logging output, with the specified colors.


log

public static boolean log(java.lang.Object[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.Object[] ary)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.Object[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.Object[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.Object[] ary)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.Object[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(java.lang.String name,
                          java.lang.Object[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.String name,
                          java.lang.Object[] ary)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.String name,
                          java.lang.Object[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          java.lang.Object[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.String name,
                          java.lang.Object[] ary)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.String name,
                          java.lang.Object[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(byte[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          byte[] ary)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          byte[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          byte[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          byte[] ary)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          byte[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(java.lang.String name,
                          byte[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.String name,
                          byte[] ary)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.String name,
                          byte[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          byte[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.String name,
                          byte[] ary)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.String name,
                          byte[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(char[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          char[] ary)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          char[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          char[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          char[] ary)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          char[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(java.lang.String name,
                          char[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.String name,
                          char[] ary)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.String name,
                          char[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          char[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.String name,
                          char[] ary)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.String name,
                          char[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(double[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          double[] ary)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          double[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          double[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          double[] ary)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          double[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(java.lang.String name,
                          double[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.String name,
                          double[] ary)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.String name,
                          double[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          double[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.String name,
                          double[] ary)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.String name,
                          double[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(float[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          float[] ary)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          float[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          float[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          float[] ary)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          float[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(java.lang.String name,
                          float[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.String name,
                          float[] ary)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.String name,
                          float[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          float[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.String name,
                          float[] ary)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.String name,
                          float[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(int[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          int[] ary)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          int[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          int[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          int[] ary)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          int[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(java.lang.String name,
                          int[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.String name,
                          int[] ary)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.String name,
                          int[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          int[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.String name,
                          int[] ary)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.String name,
                          int[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(long[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          long[] ary)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          long[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          long[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          long[] ary)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          long[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(java.lang.String name,
                          long[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(ANSIColor color,
                          java.lang.String name,
                          long[] ary)
Writes logging output, with the specified color.


log

public static boolean log(ANSIColor[] colors,
                          java.lang.String name,
                          long[] ary)
Writes logging output, with the specified colors.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          java.lang.String name,
                          long[] ary)
Writes logging output, with the default foreground and background.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor color,
                          java.lang.String name,
                          long[] ary)
Writes logging output, with the specified color.


log

public static boolean log(org.incava.qualog.QlLevel level,
                          ANSIColor[] colors,
                          java.lang.String name,
                          long[] ary)
Writes logging output, with the specified colors.


getStack

protected static java.lang.StackTraceElement[] getStack(int depth)