fix erroneous log message in TunnelControllerGroup, replace language flags with a link to configui instead

This commit is contained in:
hankhill19580
2019-10-08 18:10:34 +00:00
parent 612bdda281
commit cb2544157f
5 changed files with 13 additions and 72 deletions

View File

@ -375,11 +375,15 @@ public class TunnelControllerGroup implements ClientApp {
props = loadConfig(cfgFile);
if (shouldMigrate && !dir.exists()) {
boolean ok = migrate(props, cfgFile, dir);
if (!ok)
if (!ok) {
shouldMigrate = false;
} else {
_log.logAlways(Log.WARN, "Using new tunnel configurations in " + dir +
" - ignoring old tunnel configuration in " + cfgFile);
}
} else {
_log.logAlways(Log.WARN, "Using new tunnel configurations in " + dir +
" - ignoring old tunnel configuration in " + cfgFile);
_log.logAlways(Log.WARN, "Not migrating tunnel configurations on excluded platform " +
" - using tunnel configuration in " + cfgFile);
}
} catch (IOException ioe) {
if (_log.shouldLog(Log.ERROR))