On Thu, 11 Mar 2004, Peter Schuller wrote:
> On Wednesday 10 March 2004 14.49, Richard Huxton wrote:
>
> > Don't use it myself, but there are examples in the source distribution that
> > seem to turn debugging on. Would the line below do anything for you:
> > DriverManager.setLogStream(System.err);
>
> I'll have a go and see what I get. Thanks a lot!
>
This will only direct the log to a particular location, to actually
generate a log you need to add a loglevel=2 parameter to your url, like
so:
jdbc:postgresql://localhost:5432/dbname?loglevel=2
Kris Jurka