decrease log level for selects that return no rows

This commit is contained in:
Carlos Ruiz 2011-03-26 01:40:05 -05:00
parent f2d0b8d75c
commit bf4b9127ff
1 changed files with 4 additions and 4 deletions

View File

@ -1397,7 +1397,7 @@ public final class DB
if (rs.next()) if (rs.next())
retValue = rs.getInt(1); retValue = rs.getInt(1);
else else
log.info("No Value " + sql); log.fine("No Value " + sql);
} }
catch (SQLException e) catch (SQLException e)
{ {
@ -1478,7 +1478,7 @@ public final class DB
if (rs.next()) if (rs.next())
retValue = rs.getString(1); retValue = rs.getString(1);
else else
log.info("No Value " + sql); log.fine("No Value " + sql);
} }
catch (SQLException e) catch (SQLException e)
{ {
@ -1559,7 +1559,7 @@ public final class DB
if (rs.next()) if (rs.next())
retValue = rs.getBigDecimal(1); retValue = rs.getBigDecimal(1);
else else
log.info("No Value " + sql); log.fine("No Value " + sql);
} }
catch (SQLException e) catch (SQLException e)
{ {
@ -1642,7 +1642,7 @@ public final class DB
if (rs.next()) if (rs.next())
retValue = rs.getTimestamp(1); retValue = rs.getTimestamp(1);
else else
log.info("No Value " + sql); log.fine("No Value " + sql);
} }
catch (SQLException e) catch (SQLException e)
{ {