This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to annotated tag REL9_3_1100 in repository libpostgresql-jdbc-java.
commit 343c422a54e9b14d545335c5e396028c053fb378 Author: Dave Cramer <[email protected]> Date: Wed Feb 20 06:40:54 2013 -0500 added Loglevel.OFF to complete the settings --- org/postgresql/Driver.java.in | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/org/postgresql/Driver.java.in b/org/postgresql/Driver.java.in index 5f20a4e..ad5e938 100644 --- a/org/postgresql/Driver.java.in +++ b/org/postgresql/Driver.java.in @@ -50,7 +50,8 @@ public class Driver implements java.sql.Driver public static final int DEBUG = 2; public static final int INFO = 1; - + public static final int OFF = 0; + private static final Logger logger = new Logger(); private static boolean logLevelSet = false; private static Timer cancelTimer=null; @@ -189,8 +190,8 @@ public class Driver implements java.sql.Driver * otherwise the jvm character encoding is used as the default. * This value is only used when connecting to a 7.2 or older server. * loglevel - (optional) Enable logging of messages from the driver. - * The value is an integer from 1 to 2 where: - * INFO = 1, DEBUG = 2 + * The value is an integer from 0 to 2 where: + * OFF = 0, INFO = 1, DEBUG = 2 * The output is sent to DriverManager.getPrintWriter() if set, * otherwise it is sent to System.out. * compatible - (optional) This is used to toggle @@ -446,7 +447,7 @@ public class Driver implements java.sql.Driver { "sslfactoryarg", Boolean.FALSE, "Argument forwarded to constructor of SSLSocketFactory class." }, { "loglevel", Boolean.FALSE, - "Control the driver's log verbosity: 0 is off, 1 is INFO, 2 is DEBUG.", + "Control the driver's log verbosity: 0 is OFF, 1 is INFO, 2 is DEBUG.", new String[] { "0", "1", "2" } }, { "allowEncodingChanges", Boolean.FALSE, "Allow the user to change the client_encoding variable." }, @@ -727,6 +728,7 @@ public class Driver implements java.sql.Driver * used to turn logging on to a certain level, can be called * by specifying fully qualified class ie org.postgresql.Driver.setLogLevel() * @param logLevel sets the level which logging will respond to + * OFF turn off logging * INFO being almost no messages * DEBUG most verbose */ -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libpostgresql-jdbc-java.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

