diff options
author | Barry Lind <barry@xythos.com> | 2002-06-11 02:55:16 +0000 |
---|---|---|
committer | Barry Lind <barry@xythos.com> | 2002-06-11 02:55:16 +0000 |
commit | b465f5307f9f5506beb1edbcc0fb56eed7c29c12 (patch) | |
tree | 8b9c3b3635d22ac8e0983c28ba761ca231469c05 /src/interfaces/jdbc/org/postgresql/fastpath | |
parent | 8d1c1d40ec25424d08539cdd358cfcc437adeb63 (diff) |
The patch does the following:
Allows you to set the loglevel at runtime by adding ?loglevel=X to the connection URL, where 1 = INFO and 2 = DEBUG.
Automatically turns on logging by calling DriverManager.setPrintWriter(new PrintWriter(System.out)) if one is not already set.
Adds a Driver.info() message that prints out the version number
Adds member variables logDebug and logInfo that can be checked before making logging methods calls
Adds a build number to the version number string. This build number will need to be manually incremented when we see fit.
----------------------------------------------------------------------
Modified Files:
org/postgresql/Connection.java org/postgresql/Driver.java.in
org/postgresql/fastpath/Fastpath.java
org/postgresql/jdbc1/DatabaseMetaData.java
org/postgresql/jdbc2/Connection.java
org/postgresql/jdbc2/DatabaseMetaData.java
org/postgresql/largeobject/LargeObjectManager.java
org/postgresql/util/PSQLException.java
org/postgresql/util/Serialize.java
----------------------------------------------------------------------
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/fastpath')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/fastpath/Fastpath.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/fastpath/Fastpath.java b/src/interfaces/jdbc/org/postgresql/fastpath/Fastpath.java index a74645015a8..20f5a6f3e26 100644 --- a/src/interfaces/jdbc/org/postgresql/fastpath/Fastpath.java +++ b/src/interfaces/jdbc/org/postgresql/fastpath/Fastpath.java @@ -1,5 +1,6 @@ package org.postgresql.fastpath; +import org.postgresql.Driver; import java.io.*; import java.lang.*; import java.net.*; @@ -44,7 +45,6 @@ public class Fastpath { this.conn = conn; this.stream = stream; - //DriverManager.println("Fastpath initialised"); } /* @@ -174,7 +174,7 @@ public class Fastpath */ public Object fastpath(String name, boolean resulttype, FastpathArg[] args) throws SQLException { - //DriverManager.println("Fastpath: calling "+name); + if (Driver.logDebug) Driver.debug("Fastpath: calling "+name); return fastpath(getID(name), resulttype, args); } |