also change message

This commit is contained in:
Xephi59 2015-07-06 02:43:51 +02:00
parent 53590cf029
commit e021a32f1f

View File

@ -612,7 +612,7 @@ public final class Settings extends YamlConfiguration {
try { try {
return DataSource.DataSourceType.valueOf(configFile.getString(key, "sqlite").toUpperCase()); return DataSource.DataSourceType.valueOf(configFile.getString(key, "sqlite").toUpperCase());
} catch (IllegalArgumentException ex) { } catch (IllegalArgumentException ex) {
ConsoleLogger.showError("Unknown database backend; defaulting to file database"); ConsoleLogger.showError("Unknown database backend; defaulting to sqlite database");
return DataSource.DataSourceType.SQLITE; return DataSource.DataSourceType.SQLITE;
} }
} }