Increase loglevel verbosity of sql statement output, because INFO is too raw grained

This commit is contained in:
deathmeat 2007-04-25 16:21:53 +00:00
parent 910fa16127
commit 81afa1dbc0
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ public class DB_PostgreSQL implements AdempiereDatabase
if (!oraStatement.equals(retValue[0]) && retValue[0].indexOf("AD_Error") == -1)
//begin vpj-cd 24/06/2005 e-evolution
//System.out.println("PostgreSQL =>" + retValue[0] + "<= <" + oraStatement + ">");
log.log(Level.INFO, "PostgreSQL =>" + retValue[0] + "<= <" + oraStatement + ">");
log.log(Level.FINER, "PostgreSQL =>" + retValue[0] + "<= <" + oraStatement + ">");
//end vpj-cd 24/06/2005 e-evolution
//
return retValue[0];