Generify SqlStorage shutdown exception message (#3039)

This commit is contained in:
Jacob C 2021-06-10 16:16:23 -04:00 committed by GitHub
parent a63be102cf
commit 8ae70990ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -221,7 +221,7 @@ public class SqlStorage implements StorageImplementation {
try { try {
this.connectionFactory.shutdown(); this.connectionFactory.shutdown();
} catch (Exception e) { } catch (Exception e) {
this.plugin.getLogger().severe("Exception whilst disabling SQLite storage", e); this.plugin.getLogger().severe("Exception whilst disabling SQL storage", e);
} }
} }