Github user JPercivall commented on a diff in the pull request:
https://github.com/apache/nifi-minifi/pull/117#discussion_r183258883
--- Diff:
minifi-bootstrap/src/main/java/org/apache/nifi/minifi/bootstrap/RunMiNiFi.java
---
@@ -1176,11 +1191,18 @@ public boolean accept(final File dir, final String
filename) {
@SuppressWarnings({"rawtypes", "unchecked"})
public void start() throws IOException, InterruptedException {
+ Properties bootstrapProperties = getBootstrapProperties();
+
+ final String confDir =
bootstrapProperties.getProperty(CONF_DIR_KEY);
+ final File configFile = new
File(bootstrapProperties.getProperty(MINIFI_CONFIG_FILE_KEY));
+ final Properties transformationConfigProperties =
getConfigTransformationProperties(bootstrapProperties);
+
+ for(String name:
transformationConfigProperties.stringPropertyNames()) {
+ defaultLogger.error("config property: name:[" + name + "]
value:[" + transformationConfigProperties.getProperty(name) + "] ");
--- End diff --
Most definitely better as `info`
---