H2: Don't show stack trace when failing to build BloomFilter

Only show the exception message.

Change-Id: I210ed24e5baaf4f7b6f62f10f5c0fa448e9079d8
This commit is contained in:
David Pursehouse 2015-04-28 14:54:27 +09:00
parent 90b066fadc
commit bbd54fa065
1 changed files with 1 additions and 1 deletions

View File

@ -388,7 +388,7 @@ public class H2CacheImpl<K, V> extends AbstractLoadingCache<K, V> implements
return b;
}
} catch (SQLException e) {
log.warn("Cannot build BloomFilter for " + url, e);
log.warn("Cannot build BloomFilter for " + url + ": " + e.getMessage());
c = close(c);
return null;
} finally {