MCPcopy Create free account
hub / github.com/M66B/FairEmail / getDebugOut

Method getDebugOut

app/src/main/java/javax/mail/Session.java:451–456  ·  view source on GitHub ↗

Returns the stream to be used for debugging output. If no stream has been set, System.out is returned. @return the PrintStream to use for debugging output @since JavaMail 1.3

()

Source from the content-addressed store, hash-verified

449 * @since JavaMail 1.3
450 */
451 public synchronized PrintStream getDebugOut() {
452 if (out == null)
453 return System.out;
454 else
455 return out;
456 }
457
458 /**
459 * This method returns an array of all the implementations installed

Callers 8

initLoggerMethod · 0.95
IdleManagerMethod · 0.80
IMAPStoreMethod · 0.80
IMAPFolderMethod · 0.80
SMTPTransportMethod · 0.80
MailLoggerMethod · 0.80
POP3StoreMethod · 0.80
POP3FolderMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected