minor log message rearrangement

This commit is contained in:
hns 2001-01-18 14:47:36 +00:00
parent 6d0491e2de
commit 8451bfddd9

View file

@ -67,10 +67,12 @@ public class DbWrapper {
loaded = true;
} catch (NoClassDefFoundError noclass) {
Server.getLogger().log ("Warning: Using file based db as fallback. Reason: "+noclass);
Server.getLogger().log ("Warning: Using internal file based db as fallback.");
Server.getLogger().log ("Reason: "+noclass);
loaded = false;
} catch (UnsatisfiedLinkError nolib) {
Server.getLogger().log ("Warning: Using file based db as fallback. Reason: "+nolib);
Server.getLogger().log ("Warning: Using internal file based db as fallback.");
Server.getLogger().log ("Reason: "+nolib);
loaded = false;
}
@ -278,4 +280,4 @@ public class DbWrapper {
}
}
}