Quellcode durchsuchen

计算样板机功率报空指针

xiuwei vor 3 Jahren
Ursprung
Commit
a7a2933598

+ 7 - 2
ipfcst-console/src/main/java/com/jiayue/ipfcst/console/service/powerofreference/BasePowerOfReferenceCalculator.java

@@ -1,7 +1,9 @@
 package com.jiayue.ipfcst.console.service.powerofreference;
 
 
+import com.alibaba.druid.util.StringUtils;
 import com.jiayue.ipfcst.common.core.util.SpringContextHolder;
+import com.jiayue.ipfcst.common.core.util.StringUtil;
 import com.jiayue.ipfcst.common.data.constant.enums.ElectricFieldTypeEnum;
 import com.jiayue.ipfcst.common.data.entity.ElectricField;
 import com.jiayue.ipfcst.console.service.ElectricFieldService;
@@ -23,11 +25,11 @@ public abstract class BasePowerOfReferenceCalculator {
   /**
    * 风机
    */
-  private static final  String FJ="FJ";
+  private static final  String FJ="fj";
   /**
    * 逆变器
    */
-  private static final  String NBQ="NBQ";
+  private static final  String NBQ="nbq";
 
 
   /**
@@ -84,6 +86,9 @@ public abstract class BasePowerOfReferenceCalculator {
       e=NBQ;
     }
     e=redisUtils.hget(e+"-"+electricField.getStationCode()+"-"+equipmentId,"activePower");
+    if(e==null ||"".equals(e)){
+      return  BigDecimal.ZERO;
+    }
     return new BigDecimal(e);
   }
 

+ 1 - 2
ipfcst-console/src/main/java/com/jiayue/ipfcst/console/service/powerofreference/iml/PowerOfReferenceCalculator1.java

@@ -53,7 +53,6 @@ public class PowerOfReferenceCalculator1 extends BasePowerOfReferenceCalculator
     BigDecimal avgRatio = BigDecimal.ZERO;
     BigDecimal ratio;
     try {
-
       if (stationTotalCapacity != null && stationTotalCapacity.compareTo(BigDecimal.ZERO) != 0) {
         for (SampleEquipment e : samples) {
           ratio = e.updatePower().getSamplePowerGenerationRatio();
@@ -69,8 +68,8 @@ public class PowerOfReferenceCalculator1 extends BasePowerOfReferenceCalculator
         return BigDecimal.ZERO;
       }
       avgRatio = avgRatio.divide(BigDecimal.valueOf(samples.size()), 10, RoundingMode.HALF_UP).multiply(stationTotalCapacity).setScale(2, RoundingMode.HALF_UP);
-
     } catch (Exception e) {
+      e.printStackTrace();
       log.error("计算样板机法理论功率数据时发生了异常" + e);
     }
     return avgRatio;

+ 2 - 2
ipfcst-console/src/test/java/com/jiayue/ipfcst/console/service/PowerStationDataTest.java

@@ -28,7 +28,7 @@ public class PowerStationDataTest extends BaseTest {
   @Test
   public void packages() throws Exception {
     for (; ; ) {
-      PowerStationStatusData a = powerStationDataPackerContainer.getDataPacker("J00001").packageData(BigDecimal.valueOf(20));
+      PowerStationStatusData a = powerStationDataPackerContainer.getDataPacker("Q00001").packageData(BigDecimal.valueOf(0.2));
       System.out.println(JSON.toJSONString(a));
       Thread.sleep(20000L);
     }
@@ -37,7 +37,7 @@ public class PowerStationDataTest extends BaseTest {
   @Test
   public void save() throws Exception {
     WindTurbineStatusData data = new WindTurbineStatusData();
-    data.setStationCode("J00001");
+    data.setStationCode("Q00001");
     data.setId(1);
     data.setActivePower(BigDecimal.valueOf(random.nextFloat()).multiply(BigDecimal.valueOf(1000)));
     saveEquipmentStatusData("FJ-" + data.getStationCode() + "-" + data.getId(), data);

+ 363 - 561
ipfcst-console/velocity.log

@@ -1,561 +1,363 @@
-2021-10-21 14:50:16,522 - Null reference [template 'start-console.vm', line 25, column 49] : $start_app_log cannot be resolved.
-2021-10-21 14:50:16,522 - Null reference [template 'start-console.vm', line 28, column 44] : $app_path cannot be resolved.
-2021-10-21 15:09:03,236 - Log4JLogChute initialized using file 'velocity.log'
-2021-10-21 15:09:03,236 - Initializing Velocity, Calling init()...
-2021-10-21 15:09:03,236 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
-2021-10-21 15:09:03,236 - Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties
-2021-10-21 15:09:03,236 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
-2021-10-21 15:09:03,236 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
-2021-10-21 15:09:03,236 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-21 15:09:03,236 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-21 15:09:03,240 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-21 15:09:03,252 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
-2021-10-21 15:09:03,253 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
-2021-10-21 15:09:03,254 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
-2021-10-21 15:09:03,254 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
-2021-10-21 15:09:03,254 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
-2021-10-21 15:09:03,255 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
-2021-10-21 15:09:03,255 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
-2021-10-21 15:09:03,256 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
-2021-10-21 15:09:03,257 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
-2021-10-21 15:09:03,257 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
-2021-10-21 15:09:03,296 - Created '20' parsers.
-2021-10-21 15:09:03,302 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
-2021-10-21 15:09:03,302 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm
-2021-10-21 15:09:03,302 - Velocimacro : Default library not found.
-2021-10-21 15:09:03,302 - Velocimacro : allowInline = true : VMs can be defined inline in templates
-2021-10-21 15:09:03,302 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
-2021-10-21 15:09:03,302 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
-2021-10-21 15:09:03,302 - Velocimacro : autoload off : VM system will not automatically reload global library macros
-2021-10-21 15:09:03,332 - ResourceManager : found start-console.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-21 15:09:03,333 - Null reference [template 'start-console.vm', line 4, column 19] : $basedir cannot be resolved.
-2021-10-21 15:09:03,333 - Null reference [template 'start-console.vm', line 6, column 22] : $basedir cannot be resolved.
-2021-10-21 15:09:03,333 - Null reference [template 'start-console.vm', line 10, column 17] : $producedir cannot be resolved.
-2021-10-21 15:09:03,333 - Null reference [template 'start-console.vm', line 13, column 17] : $JAVA_HOME cannot be resolved.
-2021-10-21 15:09:03,333 - Null reference [template 'start-console.vm', line 14, column 20] : $JAVA_HOME cannot be resolved.
-2021-10-21 15:09:03,333 - Null reference [template 'start-console.vm', line 14, column 35] : $JRE_HOME cannot be resolved.
-2021-10-21 15:09:03,333 - Null reference [template 'start-console.vm', line 14, column 49] : $CLASSPATH cannot be resolved.
-2021-10-21 15:09:03,333 - Null reference [template 'start-console.vm', line 15, column 13] : $JAVA_HOME cannot be resolved.
-2021-10-21 15:09:03,333 - Null reference [template 'start-console.vm', line 15, column 28] : $JRE_HOME cannot be resolved.
-2021-10-21 15:09:03,333 - Null reference [template 'start-console.vm', line 15, column 42] : $PATH cannot be resolved.
-2021-10-21 15:09:03,333 - Null reference [template 'start-console.vm', line 21, column 4] : $app_path cannot be resolved.
-2021-10-21 15:09:03,333 - Null reference [template 'start-console.vm', line 23, column 12] : $app_path cannot be resolved.
-2021-10-21 15:09:03,333 - Null reference [template 'start-console.vm', line 25, column 19] : $app_path cannot be resolved.
-2021-10-21 15:09:03,333 - Null reference [template 'start-console.vm', line 25, column 49] : $start_app_log cannot be resolved.
-2021-10-21 15:09:03,333 - Null reference [template 'start-console.vm', line 28, column 44] : $app_path cannot be resolved.
-2021-10-21 15:40:05,198 - Log4JLogChute initialized using file 'velocity.log'
-2021-10-21 15:40:05,199 - Initializing Velocity, Calling init()...
-2021-10-21 15:40:05,199 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
-2021-10-21 15:40:05,199 - Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties
-2021-10-21 15:40:05,199 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
-2021-10-21 15:40:05,199 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
-2021-10-21 15:40:05,199 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-21 15:40:05,199 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-21 15:40:05,201 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-21 15:40:05,210 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
-2021-10-21 15:40:05,211 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
-2021-10-21 15:40:05,211 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
-2021-10-21 15:40:05,211 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
-2021-10-21 15:40:05,212 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
-2021-10-21 15:40:05,212 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
-2021-10-21 15:40:05,216 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
-2021-10-21 15:40:05,217 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
-2021-10-21 15:40:05,217 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
-2021-10-21 15:40:05,218 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
-2021-10-21 15:40:05,235 - Created '20' parsers.
-2021-10-21 15:40:05,237 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
-2021-10-21 15:40:05,238 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm
-2021-10-21 15:40:05,238 - Velocimacro : Default library not found.
-2021-10-21 15:40:05,238 - Velocimacro : allowInline = true : VMs can be defined inline in templates
-2021-10-21 15:40:05,238 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
-2021-10-21 15:40:05,238 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
-2021-10-21 15:40:05,238 - Velocimacro : autoload off : VM system will not automatically reload global library macros
-2021-10-21 15:40:05,244 - ResourceManager : found start-console.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-21 15:40:05,244 - Null reference [template 'start-console.vm', line 4, column 19] : $basedir cannot be resolved.
-2021-10-21 15:40:05,244 - Null reference [template 'start-console.vm', line 6, column 22] : $basedir cannot be resolved.
-2021-10-21 15:40:05,244 - Null reference [template 'start-console.vm', line 10, column 17] : $producedir cannot be resolved.
-2021-10-21 15:40:05,244 - Null reference [template 'start-console.vm', line 13, column 17] : $JAVA_HOME cannot be resolved.
-2021-10-21 15:40:05,244 - Null reference [template 'start-console.vm', line 14, column 20] : $JAVA_HOME cannot be resolved.
-2021-10-21 15:40:05,244 - Null reference [template 'start-console.vm', line 14, column 35] : $JRE_HOME cannot be resolved.
-2021-10-21 15:40:05,244 - Null reference [template 'start-console.vm', line 14, column 49] : $CLASSPATH cannot be resolved.
-2021-10-21 15:40:05,244 - Null reference [template 'start-console.vm', line 15, column 13] : $JAVA_HOME cannot be resolved.
-2021-10-21 15:40:05,245 - Null reference [template 'start-console.vm', line 15, column 28] : $JRE_HOME cannot be resolved.
-2021-10-21 15:40:05,245 - Null reference [template 'start-console.vm', line 15, column 42] : $PATH cannot be resolved.
-2021-10-21 15:40:05,245 - Null reference [template 'start-console.vm', line 21, column 4] : $app_path cannot be resolved.
-2021-10-21 15:40:05,245 - Null reference [template 'start-console.vm', line 23, column 12] : $app_path cannot be resolved.
-2021-10-21 15:40:05,245 - Null reference [template 'start-console.vm', line 25, column 19] : $app_path cannot be resolved.
-2021-10-21 15:40:05,245 - Null reference [template 'start-console.vm', line 25, column 49] : $start_app_log cannot be resolved.
-2021-10-21 15:40:05,245 - Null reference [template 'start-console.vm', line 28, column 44] : $app_path cannot be resolved.
-2021-10-21 16:05:25,881 - Log4JLogChute initialized using file 'velocity.log'
-2021-10-21 16:05:25,881 - Initializing Velocity, Calling init()...
-2021-10-21 16:05:25,881 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
-2021-10-21 16:05:25,881 - Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties
-2021-10-21 16:05:25,881 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
-2021-10-21 16:05:25,881 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
-2021-10-21 16:05:25,881 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-21 16:05:25,881 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-21 16:05:25,883 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-21 16:05:25,891 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
-2021-10-21 16:05:25,892 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
-2021-10-21 16:05:25,892 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
-2021-10-21 16:05:25,893 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
-2021-10-21 16:05:25,893 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
-2021-10-21 16:05:25,893 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
-2021-10-21 16:05:25,894 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
-2021-10-21 16:05:25,898 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
-2021-10-21 16:05:25,898 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
-2021-10-21 16:05:25,899 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
-2021-10-21 16:05:25,917 - Created '20' parsers.
-2021-10-21 16:05:25,919 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
-2021-10-21 16:05:25,919 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm
-2021-10-21 16:05:25,919 - Velocimacro : Default library not found.
-2021-10-21 16:05:25,919 - Velocimacro : allowInline = true : VMs can be defined inline in templates
-2021-10-21 16:05:25,919 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
-2021-10-21 16:05:25,919 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
-2021-10-21 16:05:25,919 - Velocimacro : autoload off : VM system will not automatically reload global library macros
-2021-10-21 16:05:25,931 - ResourceManager : found start-console.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-21 16:05:25,931 - Null reference [template 'start-console.vm', line 4, column 19] : $basedir cannot be resolved.
-2021-10-21 16:05:25,931 - Null reference [template 'start-console.vm', line 6, column 22] : $basedir cannot be resolved.
-2021-10-21 16:05:25,931 - Null reference [template 'start-console.vm', line 10, column 17] : $producedir cannot be resolved.
-2021-10-21 16:05:25,931 - Null reference [template 'start-console.vm', line 13, column 17] : $JAVA_HOME cannot be resolved.
-2021-10-21 16:05:25,931 - Null reference [template 'start-console.vm', line 14, column 20] : $JAVA_HOME cannot be resolved.
-2021-10-21 16:05:25,931 - Null reference [template 'start-console.vm', line 14, column 35] : $JRE_HOME cannot be resolved.
-2021-10-21 16:05:25,931 - Null reference [template 'start-console.vm', line 14, column 49] : $CLASSPATH cannot be resolved.
-2021-10-21 16:05:25,931 - Null reference [template 'start-console.vm', line 15, column 13] : $JAVA_HOME cannot be resolved.
-2021-10-21 16:05:25,931 - Null reference [template 'start-console.vm', line 15, column 28] : $JRE_HOME cannot be resolved.
-2021-10-21 16:05:25,931 - Null reference [template 'start-console.vm', line 15, column 42] : $PATH cannot be resolved.
-2021-10-21 16:05:25,931 - Null reference [template 'start-console.vm', line 21, column 4] : $app_path cannot be resolved.
-2021-10-21 16:05:25,931 - Null reference [template 'start-console.vm', line 23, column 12] : $app_path cannot be resolved.
-2021-10-21 16:05:25,931 - Null reference [template 'start-console.vm', line 25, column 19] : $app_path cannot be resolved.
-2021-10-21 16:05:25,931 - Null reference [template 'start-console.vm', line 25, column 49] : $start_app_log cannot be resolved.
-2021-10-21 16:05:25,931 - Null reference [template 'start-console.vm', line 28, column 44] : $app_path cannot be resolved.
-2021-10-21 16:34:28,349 - Log4JLogChute initialized using file 'velocity.log'
-2021-10-21 16:34:28,349 - Initializing Velocity, Calling init()...
-2021-10-21 16:34:28,349 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
-2021-10-21 16:34:28,349 - Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties
-2021-10-21 16:34:28,349 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
-2021-10-21 16:34:28,349 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
-2021-10-21 16:34:28,349 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-21 16:34:28,349 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-21 16:34:28,351 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-21 16:34:28,359 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
-2021-10-21 16:34:28,360 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
-2021-10-21 16:34:28,361 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
-2021-10-21 16:34:28,362 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
-2021-10-21 16:34:28,362 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
-2021-10-21 16:34:28,362 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
-2021-10-21 16:34:28,363 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
-2021-10-21 16:34:28,364 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
-2021-10-21 16:34:28,364 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
-2021-10-21 16:34:28,365 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
-2021-10-21 16:34:28,386 - Created '20' parsers.
-2021-10-21 16:34:28,388 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
-2021-10-21 16:34:28,389 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm
-2021-10-21 16:34:28,389 - Velocimacro : Default library not found.
-2021-10-21 16:34:28,389 - Velocimacro : allowInline = true : VMs can be defined inline in templates
-2021-10-21 16:34:28,389 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
-2021-10-21 16:34:28,389 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
-2021-10-21 16:34:28,389 - Velocimacro : autoload off : VM system will not automatically reload global library macros
-2021-10-21 16:34:28,394 - ResourceManager : found start-console.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-21 16:34:28,395 - Null reference [template 'start-console.vm', line 4, column 19] : $basedir cannot be resolved.
-2021-10-21 16:34:28,395 - Null reference [template 'start-console.vm', line 6, column 22] : $basedir cannot be resolved.
-2021-10-21 16:34:28,395 - Null reference [template 'start-console.vm', line 10, column 17] : $producedir cannot be resolved.
-2021-10-21 16:34:28,395 - Null reference [template 'start-console.vm', line 13, column 17] : $JAVA_HOME cannot be resolved.
-2021-10-21 16:34:28,395 - Null reference [template 'start-console.vm', line 14, column 20] : $JAVA_HOME cannot be resolved.
-2021-10-21 16:34:28,395 - Null reference [template 'start-console.vm', line 14, column 35] : $JRE_HOME cannot be resolved.
-2021-10-21 16:34:28,395 - Null reference [template 'start-console.vm', line 14, column 49] : $CLASSPATH cannot be resolved.
-2021-10-21 16:34:28,395 - Null reference [template 'start-console.vm', line 15, column 13] : $JAVA_HOME cannot be resolved.
-2021-10-21 16:34:28,395 - Null reference [template 'start-console.vm', line 15, column 28] : $JRE_HOME cannot be resolved.
-2021-10-21 16:34:28,395 - Null reference [template 'start-console.vm', line 15, column 42] : $PATH cannot be resolved.
-2021-10-21 16:34:28,395 - Null reference [template 'start-console.vm', line 21, column 4] : $app_path cannot be resolved.
-2021-10-21 16:34:28,395 - Null reference [template 'start-console.vm', line 23, column 12] : $app_path cannot be resolved.
-2021-10-21 16:34:28,395 - Null reference [template 'start-console.vm', line 25, column 19] : $app_path cannot be resolved.
-2021-10-21 16:34:28,395 - Null reference [template 'start-console.vm', line 25, column 49] : $start_app_log cannot be resolved.
-2021-10-21 16:34:28,395 - Null reference [template 'start-console.vm', line 28, column 44] : $app_path cannot be resolved.
-2021-10-22 09:49:28,719 - Log4JLogChute initialized using file 'velocity.log'
-2021-10-22 09:49:28,720 - Initializing Velocity, Calling init()...
-2021-10-22 09:49:28,720 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
-2021-10-22 09:49:28,720 - Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties
-2021-10-22 09:49:28,720 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
-2021-10-22 09:49:28,720 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
-2021-10-22 09:49:28,720 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 09:49:28,720 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 09:49:28,721 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 09:49:28,732 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
-2021-10-22 09:49:28,733 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
-2021-10-22 09:49:28,733 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
-2021-10-22 09:49:28,734 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
-2021-10-22 09:49:28,734 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
-2021-10-22 09:49:28,734 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
-2021-10-22 09:49:28,735 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
-2021-10-22 09:49:28,735 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
-2021-10-22 09:49:28,736 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
-2021-10-22 09:49:28,736 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
-2021-10-22 09:49:28,760 - Created '20' parsers.
-2021-10-22 09:49:28,763 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
-2021-10-22 09:49:28,763 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm
-2021-10-22 09:49:28,763 - Velocimacro : Default library not found.
-2021-10-22 09:49:28,763 - Velocimacro : allowInline = true : VMs can be defined inline in templates
-2021-10-22 09:49:28,763 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
-2021-10-22 09:49:28,763 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
-2021-10-22 09:49:28,763 - Velocimacro : autoload off : VM system will not automatically reload global library macros
-2021-10-22 09:49:28,770 - ResourceManager : found start-console.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 09:49:28,771 - Null reference [template 'start-console.vm', line 4, column 19] : $basedir cannot be resolved.
-2021-10-22 09:49:28,771 - Null reference [template 'start-console.vm', line 6, column 22] : $basedir cannot be resolved.
-2021-10-22 09:49:28,771 - Null reference [template 'start-console.vm', line 10, column 17] : $producedir cannot be resolved.
-2021-10-22 09:49:28,771 - Null reference [template 'start-console.vm', line 13, column 17] : $JAVA_HOME cannot be resolved.
-2021-10-22 09:49:28,771 - Null reference [template 'start-console.vm', line 14, column 20] : $JAVA_HOME cannot be resolved.
-2021-10-22 09:49:28,771 - Null reference [template 'start-console.vm', line 14, column 35] : $JRE_HOME cannot be resolved.
-2021-10-22 09:49:28,771 - Null reference [template 'start-console.vm', line 14, column 49] : $CLASSPATH cannot be resolved.
-2021-10-22 09:49:28,771 - Null reference [template 'start-console.vm', line 15, column 13] : $JAVA_HOME cannot be resolved.
-2021-10-22 09:49:28,771 - Null reference [template 'start-console.vm', line 15, column 28] : $JRE_HOME cannot be resolved.
-2021-10-22 09:49:28,771 - Null reference [template 'start-console.vm', line 15, column 42] : $PATH cannot be resolved.
-2021-10-22 09:49:28,771 - Null reference [template 'start-console.vm', line 21, column 4] : $app_path cannot be resolved.
-2021-10-22 09:49:28,771 - Null reference [template 'start-console.vm', line 23, column 12] : $app_path cannot be resolved.
-2021-10-22 09:49:28,771 - Null reference [template 'start-console.vm', line 25, column 19] : $app_path cannot be resolved.
-2021-10-22 09:49:28,771 - Null reference [template 'start-console.vm', line 25, column 49] : $start_app_log cannot be resolved.
-2021-10-22 09:49:28,771 - Null reference [template 'start-console.vm', line 28, column 44] : $app_path cannot be resolved.
-2021-10-22 09:56:52,738 - Log4JLogChute initialized using file 'velocity.log'
-2021-10-22 09:56:52,738 - Initializing Velocity, Calling init()...
-2021-10-22 09:56:52,738 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
-2021-10-22 09:56:52,738 - Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties
-2021-10-22 09:56:52,738 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
-2021-10-22 09:56:52,738 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
-2021-10-22 09:56:52,738 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 09:56:52,738 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 09:56:52,740 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 09:56:52,748 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
-2021-10-22 09:56:52,748 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
-2021-10-22 09:56:52,749 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
-2021-10-22 09:56:52,749 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
-2021-10-22 09:56:52,749 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
-2021-10-22 09:56:52,750 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
-2021-10-22 09:56:52,750 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
-2021-10-22 09:56:52,751 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
-2021-10-22 09:56:52,752 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
-2021-10-22 09:56:52,752 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
-2021-10-22 09:56:52,771 - Created '20' parsers.
-2021-10-22 09:56:52,773 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
-2021-10-22 09:56:52,774 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm
-2021-10-22 09:56:52,774 - Velocimacro : Default library not found.
-2021-10-22 09:56:52,774 - Velocimacro : allowInline = true : VMs can be defined inline in templates
-2021-10-22 09:56:52,774 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
-2021-10-22 09:56:52,774 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
-2021-10-22 09:56:52,774 - Velocimacro : autoload off : VM system will not automatically reload global library macros
-2021-10-22 09:56:52,780 - ResourceManager : found start-console.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 09:56:52,780 - Null reference [template 'start-console.vm', line 4, column 19] : $basedir cannot be resolved.
-2021-10-22 09:56:52,780 - Null reference [template 'start-console.vm', line 6, column 22] : $basedir cannot be resolved.
-2021-10-22 09:56:52,780 - Null reference [template 'start-console.vm', line 10, column 17] : $producedir cannot be resolved.
-2021-10-22 09:56:52,781 - Null reference [template 'start-console.vm', line 13, column 17] : $JAVA_HOME cannot be resolved.
-2021-10-22 09:56:52,781 - Null reference [template 'start-console.vm', line 14, column 20] : $JAVA_HOME cannot be resolved.
-2021-10-22 09:56:52,781 - Null reference [template 'start-console.vm', line 14, column 35] : $JRE_HOME cannot be resolved.
-2021-10-22 09:56:52,781 - Null reference [template 'start-console.vm', line 14, column 49] : $CLASSPATH cannot be resolved.
-2021-10-22 09:56:52,781 - Null reference [template 'start-console.vm', line 15, column 13] : $JAVA_HOME cannot be resolved.
-2021-10-22 09:56:52,781 - Null reference [template 'start-console.vm', line 15, column 28] : $JRE_HOME cannot be resolved.
-2021-10-22 09:56:52,781 - Null reference [template 'start-console.vm', line 15, column 42] : $PATH cannot be resolved.
-2021-10-22 09:56:52,781 - Null reference [template 'start-console.vm', line 21, column 4] : $app_path cannot be resolved.
-2021-10-22 09:56:52,781 - Null reference [template 'start-console.vm', line 23, column 12] : $app_path cannot be resolved.
-2021-10-22 09:56:52,781 - Null reference [template 'start-console.vm', line 25, column 19] : $app_path cannot be resolved.
-2021-10-22 09:56:52,781 - Null reference [template 'start-console.vm', line 25, column 49] : $start_app_log cannot be resolved.
-2021-10-22 09:56:52,781 - Null reference [template 'start-console.vm', line 28, column 44] : $app_path cannot be resolved.
-2021-10-22 10:11:05,967 - Log4JLogChute initialized using file 'velocity.log'
-2021-10-22 10:11:05,967 - Initializing Velocity, Calling init()...
-2021-10-22 10:11:05,967 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
-2021-10-22 10:11:05,967 - Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties
-2021-10-22 10:11:05,967 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
-2021-10-22 10:11:05,968 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
-2021-10-22 10:11:05,968 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 10:11:05,968 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 10:11:05,969 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 10:11:05,978 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
-2021-10-22 10:11:05,979 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
-2021-10-22 10:11:05,980 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
-2021-10-22 10:11:05,980 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
-2021-10-22 10:11:05,981 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
-2021-10-22 10:11:05,981 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
-2021-10-22 10:11:05,982 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
-2021-10-22 10:11:05,982 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
-2021-10-22 10:11:05,983 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
-2021-10-22 10:11:05,984 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
-2021-10-22 10:11:06,003 - Created '20' parsers.
-2021-10-22 10:11:06,006 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
-2021-10-22 10:11:06,006 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm
-2021-10-22 10:11:06,006 - Velocimacro : Default library not found.
-2021-10-22 10:11:06,006 - Velocimacro : allowInline = true : VMs can be defined inline in templates
-2021-10-22 10:11:06,006 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
-2021-10-22 10:11:06,006 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
-2021-10-22 10:11:06,006 - Velocimacro : autoload off : VM system will not automatically reload global library macros
-2021-10-22 10:11:06,017 - ResourceManager : found start-console.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 10:11:06,021 - Null reference [template 'start-console.vm', line 4, column 19] : $basedir cannot be resolved.
-2021-10-22 10:11:06,021 - Null reference [template 'start-console.vm', line 6, column 22] : $basedir cannot be resolved.
-2021-10-22 10:11:06,021 - Null reference [template 'start-console.vm', line 10, column 17] : $producedir cannot be resolved.
-2021-10-22 10:11:06,021 - Null reference [template 'start-console.vm', line 13, column 17] : $JAVA_HOME cannot be resolved.
-2021-10-22 10:11:06,021 - Null reference [template 'start-console.vm', line 14, column 20] : $JAVA_HOME cannot be resolved.
-2021-10-22 10:11:06,021 - Null reference [template 'start-console.vm', line 14, column 35] : $JRE_HOME cannot be resolved.
-2021-10-22 10:11:06,021 - Null reference [template 'start-console.vm', line 14, column 49] : $CLASSPATH cannot be resolved.
-2021-10-22 10:11:06,021 - Null reference [template 'start-console.vm', line 15, column 13] : $JAVA_HOME cannot be resolved.
-2021-10-22 10:11:06,021 - Null reference [template 'start-console.vm', line 15, column 28] : $JRE_HOME cannot be resolved.
-2021-10-22 10:11:06,021 - Null reference [template 'start-console.vm', line 15, column 42] : $PATH cannot be resolved.
-2021-10-22 10:11:06,021 - Null reference [template 'start-console.vm', line 21, column 4] : $app_path cannot be resolved.
-2021-10-22 10:11:06,021 - Null reference [template 'start-console.vm', line 23, column 12] : $app_path cannot be resolved.
-2021-10-22 10:11:06,021 - Null reference [template 'start-console.vm', line 25, column 19] : $app_path cannot be resolved.
-2021-10-22 10:11:06,021 - Null reference [template 'start-console.vm', line 25, column 49] : $start_app_log cannot be resolved.
-2021-10-22 10:11:06,021 - Null reference [template 'start-console.vm', line 28, column 44] : $app_path cannot be resolved.
-2021-10-22 10:16:00,220 - Log4JLogChute initialized using file 'velocity.log'
-2021-10-22 10:16:00,220 - Initializing Velocity, Calling init()...
-2021-10-22 10:16:00,220 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
-2021-10-22 10:16:00,220 - Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties
-2021-10-22 10:16:00,220 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
-2021-10-22 10:16:00,220 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
-2021-10-22 10:16:00,220 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 10:16:00,220 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 10:16:00,222 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 10:16:00,230 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
-2021-10-22 10:16:00,231 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
-2021-10-22 10:16:00,231 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
-2021-10-22 10:16:00,232 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
-2021-10-22 10:16:00,232 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
-2021-10-22 10:16:00,232 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
-2021-10-22 10:16:00,233 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
-2021-10-22 10:16:00,234 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
-2021-10-22 10:16:00,234 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
-2021-10-22 10:16:00,237 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
-2021-10-22 10:16:00,294 - Created '20' parsers.
-2021-10-22 10:16:00,297 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
-2021-10-22 10:16:00,297 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm
-2021-10-22 10:16:00,297 - Velocimacro : Default library not found.
-2021-10-22 10:16:00,297 - Velocimacro : allowInline = true : VMs can be defined inline in templates
-2021-10-22 10:16:00,297 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
-2021-10-22 10:16:00,297 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
-2021-10-22 10:16:00,297 - Velocimacro : autoload off : VM system will not automatically reload global library macros
-2021-10-22 10:16:00,303 - ResourceManager : found start-console.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 10:16:00,304 - Null reference [template 'start-console.vm', line 4, column 19] : $basedir cannot be resolved.
-2021-10-22 10:16:00,304 - Null reference [template 'start-console.vm', line 6, column 22] : $basedir cannot be resolved.
-2021-10-22 10:16:00,304 - Null reference [template 'start-console.vm', line 10, column 17] : $producedir cannot be resolved.
-2021-10-22 10:16:00,304 - Null reference [template 'start-console.vm', line 13, column 17] : $JAVA_HOME cannot be resolved.
-2021-10-22 10:16:00,304 - Null reference [template 'start-console.vm', line 14, column 20] : $JAVA_HOME cannot be resolved.
-2021-10-22 10:16:00,304 - Null reference [template 'start-console.vm', line 14, column 35] : $JRE_HOME cannot be resolved.
-2021-10-22 10:16:00,304 - Null reference [template 'start-console.vm', line 14, column 49] : $CLASSPATH cannot be resolved.
-2021-10-22 10:16:00,304 - Null reference [template 'start-console.vm', line 15, column 13] : $JAVA_HOME cannot be resolved.
-2021-10-22 10:16:00,304 - Null reference [template 'start-console.vm', line 15, column 28] : $JRE_HOME cannot be resolved.
-2021-10-22 10:16:00,304 - Null reference [template 'start-console.vm', line 15, column 42] : $PATH cannot be resolved.
-2021-10-22 10:16:00,304 - Null reference [template 'start-console.vm', line 21, column 4] : $app_path cannot be resolved.
-2021-10-22 10:16:00,304 - Null reference [template 'start-console.vm', line 23, column 12] : $app_path cannot be resolved.
-2021-10-22 10:16:00,304 - Null reference [template 'start-console.vm', line 25, column 19] : $app_path cannot be resolved.
-2021-10-22 10:16:00,304 - Null reference [template 'start-console.vm', line 25, column 49] : $start_app_log cannot be resolved.
-2021-10-22 10:16:00,304 - Null reference [template 'start-console.vm', line 28, column 44] : $app_path cannot be resolved.
-2021-10-22 10:46:36,428 - Log4JLogChute initialized using file 'velocity.log'
-2021-10-22 10:46:36,429 - Initializing Velocity, Calling init()...
-2021-10-22 10:46:36,429 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
-2021-10-22 10:46:36,429 - Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties
-2021-10-22 10:46:36,429 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
-2021-10-22 10:46:36,429 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
-2021-10-22 10:46:36,429 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 10:46:36,429 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 10:46:36,430 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 10:46:36,439 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
-2021-10-22 10:46:36,439 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
-2021-10-22 10:46:36,440 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
-2021-10-22 10:46:36,440 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
-2021-10-22 10:46:36,440 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
-2021-10-22 10:46:36,441 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
-2021-10-22 10:46:36,441 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
-2021-10-22 10:46:36,442 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
-2021-10-22 10:46:36,442 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
-2021-10-22 10:46:36,443 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
-2021-10-22 10:46:36,460 - Created '20' parsers.
-2021-10-22 10:46:36,463 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
-2021-10-22 10:46:36,463 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm
-2021-10-22 10:46:36,463 - Velocimacro : Default library not found.
-2021-10-22 10:46:36,463 - Velocimacro : allowInline = true : VMs can be defined inline in templates
-2021-10-22 10:46:36,463 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
-2021-10-22 10:46:36,463 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
-2021-10-22 10:46:36,463 - Velocimacro : autoload off : VM system will not automatically reload global library macros
-2021-10-22 10:46:36,469 - ResourceManager : found start-console.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 10:46:36,470 - Null reference [template 'start-console.vm', line 4, column 19] : $basedir cannot be resolved.
-2021-10-22 10:46:36,470 - Null reference [template 'start-console.vm', line 6, column 22] : $basedir cannot be resolved.
-2021-10-22 10:46:36,470 - Null reference [template 'start-console.vm', line 10, column 17] : $producedir cannot be resolved.
-2021-10-22 10:46:36,470 - Null reference [template 'start-console.vm', line 13, column 17] : $JAVA_HOME cannot be resolved.
-2021-10-22 10:46:36,470 - Null reference [template 'start-console.vm', line 14, column 20] : $JAVA_HOME cannot be resolved.
-2021-10-22 10:46:36,470 - Null reference [template 'start-console.vm', line 14, column 35] : $JRE_HOME cannot be resolved.
-2021-10-22 10:46:36,470 - Null reference [template 'start-console.vm', line 14, column 49] : $CLASSPATH cannot be resolved.
-2021-10-22 10:46:36,470 - Null reference [template 'start-console.vm', line 15, column 13] : $JAVA_HOME cannot be resolved.
-2021-10-22 10:46:36,470 - Null reference [template 'start-console.vm', line 15, column 28] : $JRE_HOME cannot be resolved.
-2021-10-22 10:46:36,470 - Null reference [template 'start-console.vm', line 15, column 42] : $PATH cannot be resolved.
-2021-10-22 10:46:36,470 - Null reference [template 'start-console.vm', line 21, column 4] : $app_path cannot be resolved.
-2021-10-22 10:46:36,470 - Null reference [template 'start-console.vm', line 23, column 12] : $app_path cannot be resolved.
-2021-10-22 10:46:36,470 - Null reference [template 'start-console.vm', line 25, column 19] : $app_path cannot be resolved.
-2021-10-22 10:46:36,470 - Null reference [template 'start-console.vm', line 25, column 49] : $start_app_log cannot be resolved.
-2021-10-22 10:46:36,470 - Null reference [template 'start-console.vm', line 28, column 44] : $app_path cannot be resolved.
-2021-10-22 11:06:49,678 - Log4JLogChute initialized using file 'velocity.log'
-2021-10-22 11:06:49,678 - Initializing Velocity, Calling init()...
-2021-10-22 11:06:49,678 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
-2021-10-22 11:06:49,678 - Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties
-2021-10-22 11:06:49,678 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
-2021-10-22 11:06:49,678 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
-2021-10-22 11:06:49,678 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 11:06:49,678 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 11:06:49,680 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 11:06:49,690 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
-2021-10-22 11:06:49,691 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
-2021-10-22 11:06:49,691 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
-2021-10-22 11:06:49,692 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
-2021-10-22 11:06:49,692 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
-2021-10-22 11:06:49,692 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
-2021-10-22 11:06:49,693 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
-2021-10-22 11:06:49,694 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
-2021-10-22 11:06:49,694 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
-2021-10-22 11:06:49,695 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
-2021-10-22 11:06:49,718 - Created '20' parsers.
-2021-10-22 11:06:49,722 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
-2021-10-22 11:06:49,722 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm
-2021-10-22 11:06:49,722 - Velocimacro : Default library not found.
-2021-10-22 11:06:49,722 - Velocimacro : allowInline = true : VMs can be defined inline in templates
-2021-10-22 11:06:49,722 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
-2021-10-22 11:06:49,722 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
-2021-10-22 11:06:49,722 - Velocimacro : autoload off : VM system will not automatically reload global library macros
-2021-10-22 11:06:49,731 - ResourceManager : found start-console.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 11:06:49,732 - Null reference [template 'start-console.vm', line 4, column 19] : $basedir cannot be resolved.
-2021-10-22 11:06:49,732 - Null reference [template 'start-console.vm', line 6, column 22] : $basedir cannot be resolved.
-2021-10-22 11:06:49,732 - Null reference [template 'start-console.vm', line 10, column 17] : $producedir cannot be resolved.
-2021-10-22 11:06:49,732 - Null reference [template 'start-console.vm', line 13, column 17] : $JAVA_HOME cannot be resolved.
-2021-10-22 11:06:49,732 - Null reference [template 'start-console.vm', line 14, column 20] : $JAVA_HOME cannot be resolved.
-2021-10-22 11:06:49,732 - Null reference [template 'start-console.vm', line 14, column 35] : $JRE_HOME cannot be resolved.
-2021-10-22 11:06:49,732 - Null reference [template 'start-console.vm', line 14, column 49] : $CLASSPATH cannot be resolved.
-2021-10-22 11:06:49,732 - Null reference [template 'start-console.vm', line 15, column 13] : $JAVA_HOME cannot be resolved.
-2021-10-22 11:06:49,732 - Null reference [template 'start-console.vm', line 15, column 28] : $JRE_HOME cannot be resolved.
-2021-10-22 11:06:49,732 - Null reference [template 'start-console.vm', line 15, column 42] : $PATH cannot be resolved.
-2021-10-22 11:06:49,732 - Null reference [template 'start-console.vm', line 21, column 4] : $app_path cannot be resolved.
-2021-10-22 11:06:49,732 - Null reference [template 'start-console.vm', line 23, column 12] : $app_path cannot be resolved.
-2021-10-22 11:06:49,732 - Null reference [template 'start-console.vm', line 25, column 19] : $app_path cannot be resolved.
-2021-10-22 11:06:49,732 - Null reference [template 'start-console.vm', line 25, column 49] : $start_app_log cannot be resolved.
-2021-10-22 11:06:49,733 - Null reference [template 'start-console.vm', line 28, column 44] : $app_path cannot be resolved.
-2021-10-22 11:27:52,390 - Log4JLogChute initialized using file 'velocity.log'
-2021-10-22 11:27:52,391 - Initializing Velocity, Calling init()...
-2021-10-22 11:27:52,391 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
-2021-10-22 11:27:52,391 - Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties
-2021-10-22 11:27:52,391 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
-2021-10-22 11:27:52,391 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
-2021-10-22 11:27:52,391 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 11:27:52,391 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 11:27:52,392 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 11:27:52,404 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
-2021-10-22 11:27:52,405 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
-2021-10-22 11:27:52,405 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
-2021-10-22 11:27:52,405 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
-2021-10-22 11:27:52,406 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
-2021-10-22 11:27:52,406 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
-2021-10-22 11:27:52,406 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
-2021-10-22 11:27:52,407 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
-2021-10-22 11:27:52,408 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
-2021-10-22 11:27:52,412 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
-2021-10-22 11:27:52,430 - Created '20' parsers.
-2021-10-22 11:27:52,432 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
-2021-10-22 11:27:52,433 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm
-2021-10-22 11:27:52,433 - Velocimacro : Default library not found.
-2021-10-22 11:27:52,433 - Velocimacro : allowInline = true : VMs can be defined inline in templates
-2021-10-22 11:27:52,433 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
-2021-10-22 11:27:52,433 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
-2021-10-22 11:27:52,433 - Velocimacro : autoload off : VM system will not automatically reload global library macros
-2021-10-22 11:27:52,439 - ResourceManager : found start-console.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 11:27:52,440 - Null reference [template 'start-console.vm', line 4, column 19] : $basedir cannot be resolved.
-2021-10-22 11:27:52,440 - Null reference [template 'start-console.vm', line 6, column 22] : $basedir cannot be resolved.
-2021-10-22 11:27:52,440 - Null reference [template 'start-console.vm', line 10, column 17] : $producedir cannot be resolved.
-2021-10-22 11:27:52,440 - Null reference [template 'start-console.vm', line 13, column 17] : $JAVA_HOME cannot be resolved.
-2021-10-22 11:27:52,440 - Null reference [template 'start-console.vm', line 14, column 20] : $JAVA_HOME cannot be resolved.
-2021-10-22 11:27:52,440 - Null reference [template 'start-console.vm', line 14, column 35] : $JRE_HOME cannot be resolved.
-2021-10-22 11:27:52,440 - Null reference [template 'start-console.vm', line 14, column 49] : $CLASSPATH cannot be resolved.
-2021-10-22 11:27:52,440 - Null reference [template 'start-console.vm', line 15, column 13] : $JAVA_HOME cannot be resolved.
-2021-10-22 11:27:52,440 - Null reference [template 'start-console.vm', line 15, column 28] : $JRE_HOME cannot be resolved.
-2021-10-22 11:27:52,440 - Null reference [template 'start-console.vm', line 15, column 42] : $PATH cannot be resolved.
-2021-10-22 11:27:52,440 - Null reference [template 'start-console.vm', line 21, column 4] : $app_path cannot be resolved.
-2021-10-22 11:27:52,440 - Null reference [template 'start-console.vm', line 23, column 12] : $app_path cannot be resolved.
-2021-10-22 11:27:52,440 - Null reference [template 'start-console.vm', line 25, column 19] : $app_path cannot be resolved.
-2021-10-22 11:27:52,440 - Null reference [template 'start-console.vm', line 25, column 49] : $start_app_log cannot be resolved.
-2021-10-22 11:27:52,440 - Null reference [template 'start-console.vm', line 28, column 44] : $app_path cannot be resolved.
-2021-10-22 11:34:43,215 - Log4JLogChute initialized using file 'velocity.log'
-2021-10-22 11:34:43,215 - Initializing Velocity, Calling init()...
-2021-10-22 11:34:43,215 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
-2021-10-22 11:34:43,215 - Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties
-2021-10-22 11:34:43,215 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
-2021-10-22 11:34:43,215 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
-2021-10-22 11:34:43,215 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 11:34:43,215 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 11:34:43,217 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 11:34:43,225 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
-2021-10-22 11:34:43,225 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
-2021-10-22 11:34:43,226 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
-2021-10-22 11:34:43,226 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
-2021-10-22 11:34:43,226 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
-2021-10-22 11:34:43,226 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
-2021-10-22 11:34:43,227 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
-2021-10-22 11:34:43,227 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
-2021-10-22 11:34:43,228 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
-2021-10-22 11:34:43,228 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
-2021-10-22 11:34:43,245 - Created '20' parsers.
-2021-10-22 11:34:43,248 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
-2021-10-22 11:34:43,248 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm
-2021-10-22 11:34:43,248 - Velocimacro : Default library not found.
-2021-10-22 11:34:43,248 - Velocimacro : allowInline = true : VMs can be defined inline in templates
-2021-10-22 11:34:43,248 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
-2021-10-22 11:34:43,248 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
-2021-10-22 11:34:43,248 - Velocimacro : autoload off : VM system will not automatically reload global library macros
-2021-10-22 11:34:43,255 - ResourceManager : found start-console.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 11:34:43,256 - Null reference [template 'start-console.vm', line 4, column 19] : $basedir cannot be resolved.
-2021-10-22 11:34:43,256 - Null reference [template 'start-console.vm', line 6, column 22] : $basedir cannot be resolved.
-2021-10-22 11:34:43,256 - Null reference [template 'start-console.vm', line 10, column 17] : $producedir cannot be resolved.
-2021-10-22 11:34:43,256 - Null reference [template 'start-console.vm', line 13, column 17] : $JAVA_HOME cannot be resolved.
-2021-10-22 11:34:43,256 - Null reference [template 'start-console.vm', line 14, column 20] : $JAVA_HOME cannot be resolved.
-2021-10-22 11:34:43,256 - Null reference [template 'start-console.vm', line 14, column 35] : $JRE_HOME cannot be resolved.
-2021-10-22 11:34:43,256 - Null reference [template 'start-console.vm', line 14, column 49] : $CLASSPATH cannot be resolved.
-2021-10-22 11:34:43,256 - Null reference [template 'start-console.vm', line 15, column 13] : $JAVA_HOME cannot be resolved.
-2021-10-22 11:34:43,256 - Null reference [template 'start-console.vm', line 15, column 28] : $JRE_HOME cannot be resolved.
-2021-10-22 11:34:43,256 - Null reference [template 'start-console.vm', line 15, column 42] : $PATH cannot be resolved.
-2021-10-22 11:34:43,256 - Null reference [template 'start-console.vm', line 21, column 4] : $app_path cannot be resolved.
-2021-10-22 11:34:43,256 - Null reference [template 'start-console.vm', line 23, column 12] : $app_path cannot be resolved.
-2021-10-22 11:34:43,256 - Null reference [template 'start-console.vm', line 25, column 19] : $app_path cannot be resolved.
-2021-10-22 11:34:43,256 - Null reference [template 'start-console.vm', line 25, column 49] : $start_app_log cannot be resolved.
-2021-10-22 11:34:43,256 - Null reference [template 'start-console.vm', line 28, column 44] : $app_path cannot be resolved.
-2021-10-22 13:29:16,512 - Log4JLogChute initialized using file 'velocity.log'
-2021-10-22 13:29:16,512 - Initializing Velocity, Calling init()...
-2021-10-22 13:29:16,512 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
-2021-10-22 13:29:16,512 - Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties
-2021-10-22 13:29:16,512 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
-2021-10-22 13:29:16,512 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
-2021-10-22 13:29:16,512 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 13:29:16,512 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
-2021-10-22 13:29:16,514 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 13:29:16,522 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
-2021-10-22 13:29:16,523 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
-2021-10-22 13:29:16,523 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
-2021-10-22 13:29:16,523 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
-2021-10-22 13:29:16,524 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
-2021-10-22 13:29:16,524 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
-2021-10-22 13:29:16,525 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
-2021-10-22 13:29:16,525 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
-2021-10-22 13:29:16,526 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
-2021-10-22 13:29:16,526 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
-2021-10-22 13:29:16,544 - Created '20' parsers.
-2021-10-22 13:29:16,546 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
-2021-10-22 13:29:16,547 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm
-2021-10-22 13:29:16,547 - Velocimacro : Default library not found.
-2021-10-22 13:29:16,547 - Velocimacro : allowInline = true : VMs can be defined inline in templates
-2021-10-22 13:29:16,547 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
-2021-10-22 13:29:16,547 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
-2021-10-22 13:29:16,547 - Velocimacro : autoload off : VM system will not automatically reload global library macros
-2021-10-22 13:29:16,553 - ResourceManager : found start-console.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
-2021-10-22 13:29:16,553 - Null reference [template 'start-console.vm', line 4, column 19] : $basedir cannot be resolved.
-2021-10-22 13:29:16,553 - Null reference [template 'start-console.vm', line 6, column 22] : $basedir cannot be resolved.
-2021-10-22 13:29:16,553 - Null reference [template 'start-console.vm', line 10, column 17] : $producedir cannot be resolved.
-2021-10-22 13:29:16,553 - Null reference [template 'start-console.vm', line 13, column 17] : $JAVA_HOME cannot be resolved.
-2021-10-22 13:29:16,553 - Null reference [template 'start-console.vm', line 14, column 20] : $JAVA_HOME cannot be resolved.
-2021-10-22 13:29:16,553 - Null reference [template 'start-console.vm', line 14, column 35] : $JRE_HOME cannot be resolved.
-2021-10-22 13:29:16,553 - Null reference [template 'start-console.vm', line 14, column 49] : $CLASSPATH cannot be resolved.
-2021-10-22 13:29:16,553 - Null reference [template 'start-console.vm', line 15, column 13] : $JAVA_HOME cannot be resolved.
-2021-10-22 13:29:16,553 - Null reference [template 'start-console.vm', line 15, column 28] : $JRE_HOME cannot be resolved.
-2021-10-22 13:29:16,553 - Null reference [template 'start-console.vm', line 15, column 42] : $PATH cannot be resolved.
-2021-10-22 13:29:16,553 - Null reference [template 'start-console.vm', line 21, column 4] : $app_path cannot be resolved.
-2021-10-22 13:29:16,553 - Null reference [template 'start-console.vm', line 23, column 12] : $app_path cannot be resolved.
-2021-10-22 13:29:16,553 - Null reference [template 'start-console.vm', line 25, column 19] : $app_path cannot be resolved.
-2021-10-22 13:29:16,553 - Null reference [template 'start-console.vm', line 25, column 49] : $start_app_log cannot be resolved.
-2021-10-22 13:29:16,553 - Null reference [template 'start-console.vm', line 28, column 44] : $app_path cannot be resolved.
+2021-10-25 16:17:30,091 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:17:30,098 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:18:10,087 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:18:10,093 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:18:15,075 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:18:15,176 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:18:15,182 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:18:20,062 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:18:20,068 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:18:30,056 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:18:30,061 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:19:10,082 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:19:10,088 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:19:15,050 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:19:15,194 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:19:15,200 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:19:20,091 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:19:20,096 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:19:30,089 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:19:30,095 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:20:10,053 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:20:10,059 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:20:15,046 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:20:15,128 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:20:15,146 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:20:15,155 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:20:20,057 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:20:22,039 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:20:30,066 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:20:30,135 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:21:10,127 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:21:10,134 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:21:15,082 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:21:15,172 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:21:15,179 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:21:20,079 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:21:20,085 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:21:30,089 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:21:30,093 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:22:10,085 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:22:10,091 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:22:15,084 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:22:15,171 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:22:15,178 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:22:20,070 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:22:20,076 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:22:30,043 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:22:30,047 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:23:10,075 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:23:10,080 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:23:15,342 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:23:15,418 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:23:15,424 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:23:20,074 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:23:20,083 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:23:30,070 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:23:30,076 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:24:10,051 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:24:10,060 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:24:15,094 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:24:15,202 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:24:15,212 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:24:20,056 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:24:20,064 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:24:30,094 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:24:30,099 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:25:10,063 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:25:10,069 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:25:15,070 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:25:15,168 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:25:15,173 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:25:15,209 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:25:20,072 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:25:21,894 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:25:30,171 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:25:30,229 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:26:10,072 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:26:10,078 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:26:15,077 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:26:15,152 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:26:15,158 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:26:20,046 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:26:20,051 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:26:30,037 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:26:30,042 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:45:45,201 - Log4JLogChute initialized using file 'velocity.log'
+2021-10-25 16:45:45,201 - Initializing Velocity, Calling init()...
+2021-10-25 16:45:45,201 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
+2021-10-25 16:45:45,201 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties
+2021-10-25 16:45:45,201 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
+2021-10-25 16:45:45,201 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
+2021-10-25 16:45:45,201 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-25 16:45:45,202 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-25 16:45:45,213 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:45:45,216 - Do unicode file recognition:  false
+2021-10-25 16:45:45,216 - FileResourceLoader : adding path ''
+2021-10-25 16:45:45,240 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
+2021-10-25 16:45:45,243 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
+2021-10-25 16:45:45,246 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
+2021-10-25 16:45:45,247 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
+2021-10-25 16:45:45,248 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
+2021-10-25 16:45:45,250 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
+2021-10-25 16:45:45,252 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
+2021-10-25 16:45:45,255 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
+2021-10-25 16:45:45,258 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
+2021-10-25 16:45:45,259 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
+2021-10-25 16:45:45,308 - Created '20' parsers.
+2021-10-25 16:45:45,321 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
+2021-10-25 16:45:45,322 - Velocimacro : Default library not found.
+2021-10-25 16:45:45,322 - Velocimacro : allowInline = true : VMs can be defined inline in templates
+2021-10-25 16:45:45,322 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
+2021-10-25 16:45:45,322 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
+2021-10-25 16:45:45,322 - Velocimacro : autoload off : VM system will not automatically reload global library macros
+2021-10-25 16:46:10,220 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:46:10,481 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:46:15,077 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:46:15,160 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:46:15,204 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:46:15,344 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:46:49,275 - Log4JLogChute initialized using file 'velocity.log'
+2021-10-25 16:46:49,275 - Initializing Velocity, Calling init()...
+2021-10-25 16:46:49,276 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
+2021-10-25 16:46:49,276 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties
+2021-10-25 16:46:49,276 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
+2021-10-25 16:46:49,276 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
+2021-10-25 16:46:49,276 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-25 16:46:49,276 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-25 16:46:49,285 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:46:49,288 - Do unicode file recognition:  false
+2021-10-25 16:46:49,288 - FileResourceLoader : adding path ''
+2021-10-25 16:46:49,312 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
+2021-10-25 16:46:49,316 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
+2021-10-25 16:46:49,318 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
+2021-10-25 16:46:49,318 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
+2021-10-25 16:46:49,320 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
+2021-10-25 16:46:49,322 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
+2021-10-25 16:46:49,324 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
+2021-10-25 16:46:49,326 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
+2021-10-25 16:46:49,329 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
+2021-10-25 16:46:49,330 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
+2021-10-25 16:46:49,372 - Created '20' parsers.
+2021-10-25 16:46:49,385 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
+2021-10-25 16:46:49,386 - Velocimacro : Default library not found.
+2021-10-25 16:46:49,386 - Velocimacro : allowInline = true : VMs can be defined inline in templates
+2021-10-25 16:46:49,386 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
+2021-10-25 16:46:49,386 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
+2021-10-25 16:46:49,386 - Velocimacro : autoload off : VM system will not automatically reload global library macros
+2021-10-25 16:46:53,713 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:46:53,717 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:46:54,231 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:46:56,137 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:47:10,106 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:47:10,119 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:47:15,140 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:47:15,306 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:47:15,315 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:47:20,066 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:47:20,075 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:47:30,061 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:47:30,069 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:48:10,074 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:48:10,085 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:48:33,886 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:48:34,647 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:48:39,967 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:48:48,704 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:48:49,166 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:48:51,917 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:48:51,917 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:49:18,516 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:49:18,527 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:49:18,597 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:49:18,730 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:49:18,738 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:49:47,542 - Log4JLogChute initialized using file 'velocity.log'
+2021-10-25 16:49:47,542 - Initializing Velocity, Calling init()...
+2021-10-25 16:49:47,542 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
+2021-10-25 16:49:47,542 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties
+2021-10-25 16:49:47,542 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
+2021-10-25 16:49:47,542 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
+2021-10-25 16:49:47,542 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-25 16:49:47,543 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-25 16:49:47,550 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:49:47,553 - Do unicode file recognition:  false
+2021-10-25 16:49:47,553 - FileResourceLoader : adding path ''
+2021-10-25 16:49:47,573 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
+2021-10-25 16:49:47,578 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
+2021-10-25 16:49:47,580 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
+2021-10-25 16:49:47,581 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
+2021-10-25 16:49:47,583 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
+2021-10-25 16:49:47,584 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
+2021-10-25 16:49:47,586 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
+2021-10-25 16:49:47,587 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
+2021-10-25 16:49:47,589 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
+2021-10-25 16:49:47,591 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
+2021-10-25 16:49:47,634 - Created '20' parsers.
+2021-10-25 16:49:47,647 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
+2021-10-25 16:49:47,647 - Velocimacro : Default library not found.
+2021-10-25 16:49:47,647 - Velocimacro : allowInline = true : VMs can be defined inline in templates
+2021-10-25 16:49:47,647 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
+2021-10-25 16:49:47,647 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
+2021-10-25 16:49:47,647 - Velocimacro : autoload off : VM system will not automatically reload global library macros
+2021-10-25 16:49:58,363 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:49:58,366 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:49:58,384 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:49:58,386 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:50:43,712 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:50:56,070 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:51:23,210 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:51:23,299 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:51:23,478 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:51:23,492 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:51:23,502 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:51:23,509 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:51:23,581 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:51:30,060 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:51:30,072 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:52:11,057 - Log4JLogChute initialized using file 'velocity.log'
+2021-10-25 16:52:11,057 - Initializing Velocity, Calling init()...
+2021-10-25 16:52:11,057 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
+2021-10-25 16:52:11,057 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties
+2021-10-25 16:52:11,057 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
+2021-10-25 16:52:11,057 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
+2021-10-25 16:52:11,058 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-25 16:52:11,058 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-25 16:52:11,067 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:52:11,069 - Do unicode file recognition:  false
+2021-10-25 16:52:11,069 - FileResourceLoader : adding path ''
+2021-10-25 16:52:11,087 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
+2021-10-25 16:52:11,090 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
+2021-10-25 16:52:11,092 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
+2021-10-25 16:52:11,093 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
+2021-10-25 16:52:11,094 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
+2021-10-25 16:52:11,095 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
+2021-10-25 16:52:11,098 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
+2021-10-25 16:52:11,099 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
+2021-10-25 16:52:11,101 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
+2021-10-25 16:52:11,103 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
+2021-10-25 16:52:11,138 - Created '20' parsers.
+2021-10-25 16:52:11,147 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
+2021-10-25 16:52:11,148 - Velocimacro : Default library not found.
+2021-10-25 16:52:11,148 - Velocimacro : allowInline = true : VMs can be defined inline in templates
+2021-10-25 16:52:11,148 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
+2021-10-25 16:52:11,148 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
+2021-10-25 16:52:11,148 - Velocimacro : autoload off : VM system will not automatically reload global library macros
+2021-10-25 16:52:15,391 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:52:15,418 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:52:15,419 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:52:15,432 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:52:15,462 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:52:20,061 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:52:22,039 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:52:30,070 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:52:30,078 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:53:10,082 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:53:10,093 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:53:15,114 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:53:15,250 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:53:15,261 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:53:20,480 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:53:20,489 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:53:30,426 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:53:30,434 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:54:10,061 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:54:10,070 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:54:15,087 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:54:15,162 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:54:15,170 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:54:20,085 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:54:20,093 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:54:55,773 - Log4JLogChute initialized using file 'velocity.log'
+2021-10-25 16:54:55,774 - Initializing Velocity, Calling init()...
+2021-10-25 16:54:55,774 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
+2021-10-25 16:54:55,774 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties
+2021-10-25 16:54:55,774 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
+2021-10-25 16:54:55,774 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
+2021-10-25 16:54:55,774 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-25 16:54:55,774 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-25 16:54:55,782 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:54:55,786 - Do unicode file recognition:  false
+2021-10-25 16:54:55,786 - FileResourceLoader : adding path ''
+2021-10-25 16:54:55,807 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
+2021-10-25 16:54:55,810 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
+2021-10-25 16:54:55,811 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
+2021-10-25 16:54:55,812 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
+2021-10-25 16:54:55,815 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
+2021-10-25 16:54:55,815 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
+2021-10-25 16:54:55,817 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
+2021-10-25 16:54:55,819 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
+2021-10-25 16:54:55,821 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
+2021-10-25 16:54:55,822 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
+2021-10-25 16:54:55,859 - Created '20' parsers.
+2021-10-25 16:54:55,872 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
+2021-10-25 16:54:55,872 - Velocimacro : Default library not found.
+2021-10-25 16:54:55,872 - Velocimacro : allowInline = true : VMs can be defined inline in templates
+2021-10-25 16:54:55,872 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
+2021-10-25 16:54:55,872 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
+2021-10-25 16:54:55,872 - Velocimacro : autoload off : VM system will not automatically reload global library macros
+2021-10-25 16:55:00,317 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:55:00,707 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:55:10,100 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:55:10,110 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:55:15,049 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:55:15,123 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:55:15,149 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:55:15,158 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:55:20,059 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:55:21,904 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:55:30,164 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:55:30,175 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:56:10,037 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:56:10,045 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:56:15,168 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:56:15,265 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:56:15,274 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:56:20,076 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:56:20,085 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:56:30,274 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:56:30,281 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:57:10,053 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:57:10,065 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:57:15,057 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:57:15,140 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:57:15,149 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:57:20,048 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:57:20,058 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:57:30,361 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:57:30,368 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:58:10,072 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:58:10,079 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:58:15,150 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:58:15,240 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:58:15,248 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:58:20,082 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:58:20,088 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:58:30,041 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:58:30,047 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:59:10,060 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:59:10,067 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:59:15,050 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:59:15,127 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:59:15,135 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:59:20,059 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:59:20,067 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:59:30,072 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 16:59:30,077 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:00:10,112 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:00:10,242 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:00:15,068 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:00:15,167 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:00:15,202 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:00:15,344 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:00:20,063 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:00:21,984 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:00:30,091 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:00:30,180 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:01:10,134 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:01:10,141 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:01:15,158 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:01:15,277 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:01:15,285 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:01:20,046 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-25 17:01:20,063 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader