minor fix for vs rendering

This commit is contained in:
Grahame Grieve 2023-12-03 20:04:11 +11:00
parent 1544706af5
commit 006958cf88
1 changed files with 1 additions and 1 deletions

View File

@ -1333,7 +1333,7 @@ public abstract class BaseWorkerContext extends I18nBase implements IWorkerConte
}
String csumm =cachingAllowed && txCache != null ? txCache.summary(code) : null;
if (cachingAllowed && txCache != null) {
txLog("$validate "+csumm+" for "+ txCache.summary(vs));
txLog("$validate "+csumm+(vs == null ? "" : " for "+ txCache.summary(vs)));
} else {
txLog("$validate "+csumm+" before cache exists");
}