List of usage examples for java.sql DriverManager println
public static void println(String message)
From source file:Logger.java
/** * Print a diagnostic message to the output stream provided by * the DataSource or the DriverManager.//from w w w .j ava 2 s . c om * * @param message the diagnostic message to print */ public static void println(String message) { if (log != null) { log.println(message); } else { DriverManager.println(message); } }