Set the stream to be used for debugging output for this session. If out is null, System.out will be used. Note that debugging output that occurs before any session is created, as a result of setting the mail.debug system property, will always be sent to S
(PrintStream out)
| 437 | * @since JavaMail 1.3 |
| 438 | */ |
| 439 | public synchronized void setDebugOut(PrintStream out) { |
| 440 | this.out = out; |
| 441 | initLogger(); |
| 442 | } |
| 443 | |
| 444 | /** |
| 445 | * Returns the stream to be used for debugging output. If no stream |