IDEMPIERE-6264 - other cases with double :: on Error (#2486)
This commit is contained in:
parent
3512cd00da
commit
d89f8b9801
|
|
@ -109,7 +109,7 @@ public class MigraID extends SvrProcess {
|
|||
.append(" WHERE ").append(uuidCol).append("=?");
|
||||
int cnt = DB.executeUpdateEx(updUUIDSB.toString(), new Object[] {p_UUID_To, p_UUID_From}, get_TrxName());
|
||||
if (cnt <= 0) {
|
||||
msg = "@Error@: UUID " + p_UUID_From + " not found on table " + l_tableName;
|
||||
msg = "@Error@ UUID " + p_UUID_From + " not found on table " + l_tableName;
|
||||
} else {
|
||||
int id = -1;
|
||||
msg = "UUID changed on table " + l_tableName + " from " + p_UUID_From + " to " + p_UUID_To;
|
||||
|
|
@ -144,7 +144,7 @@ public class MigraID extends SvrProcess {
|
|||
// convert ID
|
||||
int cnt = updID(l_tableName, idCol, true);
|
||||
if (cnt <= 0) {
|
||||
msg = "@Error@: ID " + p_ID_From + " not found on table " + l_tableName;
|
||||
msg = "@Error@ ID " + p_ID_From + " not found on table " + l_tableName;
|
||||
} else {
|
||||
msg = "ID changed on table " + l_tableName + " from " + p_ID_From + " to " + p_ID_To;
|
||||
addBufferLog(0, null, null, msg, p_AD_Table_ID, p_ID_To);
|
||||
|
|
|
|||
|
|
@ -119,7 +119,7 @@ public class PackInApplicationActivator extends AbstractActivator{
|
|||
addLog(Level.WARNING, msg);
|
||||
if (getProcessInfo() != null) {
|
||||
getProcessInfo().setError(true);
|
||||
getProcessInfo().setSummary("@Error@: " + msg);
|
||||
getProcessInfo().setSummary("@Error@ " + msg);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue