Tweak some messages
This commit is contained in:
parent
8dba2a5620
commit
0c33e84e6b
@ -471,29 +471,31 @@ public class Fawe {
|
|||||||
debug(" - Using the latest version of WorldEdit/FAWE");
|
debug(" - Using the latest version of WorldEdit/FAWE");
|
||||||
debug(" - AsyncWorldEdit/WorldEditRegions isn't installed");
|
debug(" - AsyncWorldEdit/WorldEditRegions isn't installed");
|
||||||
debug(" - Any other errors in the startup log");
|
debug(" - Any other errors in the startup log");
|
||||||
debug(" - Contact Empire92 for assistance!");
|
debug("Contact Empire92 if you need assistance:");
|
||||||
|
debug(" - Send me a PM or ask on IRC");
|
||||||
|
debug(" - http://webchat.esper.net/?nick=&channels=IntellectualCrafters");
|
||||||
debug("=======================================");
|
debug("=======================================");
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
com.github.luben.zstd.util.Native.load();
|
com.github.luben.zstd.util.Native.load();
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
|
if (Settings.CLIPBOARD.COMPRESSION_LEVEL > 6 || Settings.HISTORY.COMPRESSION_LEVEL > 6) {
|
||||||
Settings.CLIPBOARD.COMPRESSION_LEVEL = Math.min(6, Settings.CLIPBOARD.COMPRESSION_LEVEL);
|
Settings.CLIPBOARD.COMPRESSION_LEVEL = Math.min(6, Settings.CLIPBOARD.COMPRESSION_LEVEL);
|
||||||
Settings.HISTORY.COMPRESSION_LEVEL = Math.min(6, Settings.HISTORY.COMPRESSION_LEVEL);
|
Settings.HISTORY.COMPRESSION_LEVEL = Math.min(6, Settings.HISTORY.COMPRESSION_LEVEL);
|
||||||
debug("====== ZSTD COMPRESSION BINDING NOT FOUND ======");
|
debug("====== ZSTD COMPRESSION BINDING NOT FOUND ======");
|
||||||
MainUtil.handleError(e, false);
|
debug(e);
|
||||||
debug("===============================================");
|
debug("===============================================");
|
||||||
debug("FAWE will still work, but some things may be slower");
|
debug("FAWE will work but won't compress data as much");
|
||||||
debug(" - Try updating your JVM / OS");
|
|
||||||
debug(" - Report this issue if you cannot resolve it");
|
|
||||||
debug("===============================================");
|
debug("===============================================");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
net.jpountz.util.Native.load();
|
net.jpountz.util.Native.load();
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
debug("====== LZ4 COMPRESSION BINDING NOT FOUND ======");
|
debug("====== LZ4 COMPRESSION BINDING NOT FOUND ======");
|
||||||
MainUtil.handleError(e, false);
|
debug(e);
|
||||||
debug("===============================================");
|
debug("===============================================");
|
||||||
debug("FAWE will still work, but some things may be slower");
|
debug("FAWE will work but compression will be slower");
|
||||||
debug(" - Try updating your JVM / OS");
|
debug(" - Try updating your JVM / OS");
|
||||||
debug(" - Report this issue if you cannot resolve it");
|
debug(" - Report this issue if you cannot resolve it");
|
||||||
debug("===============================================");
|
debug("===============================================");
|
||||||
|
Loading…
Reference in New Issue
Block a user