Create a MailLogger that uses a Logger with the specified name and prefix. The new MailLogger uses the same debug flag and PrintStream as this MailLogger. @param name the Logger name @param prefix the prefix for debug output, or null for none @return a MailLogger for the given name and prefix.
(String name, String prefix)
| 153 | * @return a MailLogger for the given name and prefix. |
| 154 | */ |
| 155 | public MailLogger getLogger(String name, String prefix) { |
| 156 | return new MailLogger(name, prefix, debug, out); |
| 157 | } |
| 158 | |
| 159 | /** |
| 160 | * Create a MailLogger using the specified class' package |
no outgoing calls
no test coverage detected