Home | History | Annotate | Download | only in env

Lines Matching defs:prefix

45    * Creates a Logger using the class name as the message prefix.
47 * @param clazz the simple name of this class is used as the message prefix.
54 * Creates a Logger using the specified message prefix.
63 * Creates a Logger with a custom tag and a custom message prefix. If the message prefix
64 * is set to <pre>null</pre>, the caller's class name is used as the prefix.
72 final String prefix = messagePrefix == null ? getCallerSimpleName() : messagePrefix;
73 this.messagePrefix = (prefix.length() > 0) ? prefix + ": " : prefix;
77 * Creates a Logger using the caller's class name as the message prefix.
84 * Creates a Logger using the caller's class name as the message prefix.