Gianpaolo Coro 2018-03-22 18:05:02 +00:00
parent 13fbb283eb
commit 5b3a43261f
1 changed files with 4 additions and 0 deletions

View File

@ -80,7 +80,9 @@ public class DataMinerUpdater {
int idxprivusers = category.indexOf("-["); int idxprivusers = category.indexOf("-[");
if (idxprivusers > 1) { if (idxprivusers > 1) {
privateusers = category.substring(idxprivusers + 2, category.length() - 1); privateusers = category.substring(idxprivusers + 2, category.length() - 1);
category = category.substring(0,idxprivusers);
System.out.println("Found private Users " + privateusers); System.out.println("Found private Users " + privateusers);
System.out.println("Category for these users " + category);
} }
} }
if (arg.startsWith("-l")) { if (arg.startsWith("-l")) {
@ -223,6 +225,8 @@ public class DataMinerUpdater {
if (atype == null || atype.trim().length() == 0) if (atype == null || atype.trim().length() == 0)
atype = "transducerers"; atype = "transducerers";
System.out.println("Running updater 1.2");
System.out.println("*****Parameters"); System.out.println("*****Parameters");
System.out.println("*****algorithmName:" + algorithmName); System.out.println("*****algorithmName:" + algorithmName);
System.out.println("*****implementation:" + implementation); System.out.println("*****implementation:" + implementation);