Skip to content

Commit

Permalink
Fixed #0003070.
Browse files Browse the repository at this point in the history
  • Loading branch information
gwilmer committed Apr 26, 2017
1 parent 25849a1 commit 3abc915
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -697,10 +697,10 @@ protected Table readTable(Connection connection, DatabaseMetaDataWrapper metaDat
}
return table;
} catch (RuntimeException ex) {
log.error("Failed to read table: {}", tableName);
log.error(String.format("Failed to read table: %s. Error: %s", tableName, ex.getMessage()));
throw ex;
} catch (SQLException ex) {
log.error("Failed to read table: {}", tableName);
log.error(String.format("Failed to read table: %s. Error: %s", tableName, ex.getMessage()));
throw ex;
}
}
Expand Down

0 comments on commit 3abc915

Please sign in to comment.