diff options
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/fastpath/Fastpath.java')
-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 a74645015a..20f5a6f3e2 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); } |