Skip to content

Commit

Permalink
fix error logging for getBlob()
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobin Baker committed Sep 14, 2017
1 parent 015e1e4 commit afffc0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/edu/washington/escience/myria/util/MyriaUtils.java
Expand Up @@ -163,7 +163,7 @@ public static ByteBuffer getBlob(final String filename) {
return ByteBuffer.wrap(IOUtils.toByteArray(is));

} catch (Exception e) {
LOGGER.debug(e.getMessage());
LOGGER.warn("Error fetching blob from URI " + filename, e);
return null;
}
}
Expand Down

0 comments on commit afffc0a

Please sign in to comment.