Skip to content

Commit

Permalink
log close errors
Browse files Browse the repository at this point in the history
  • Loading branch information
timf committed Feb 21, 2013
1 parent 321bcb5 commit 9a84102
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/org/dasein/persist/jdbc/Loader.java
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,9 @@ public Map<String,Object> run(Transaction xaction, Map<String,Object> params) th
}
finally {
try { results.close(); }
catch( SQLException e ) { }
catch( SQLException e ) {
logger.error("Problem closing results: " + e.getMessage(), e);
}
}

long endTimestamp = System.currentTimeMillis();
Expand Down

0 comments on commit 9a84102

Please sign in to comment.