decrease log level for selects that return no rows
This commit is contained in:
parent
f2d0b8d75c
commit
bf4b9127ff
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue