Github user jzonthemtn commented on a diff in the pull request:

    https://github.com/apache/nifi-minifi/pull/117#discussion_r177177296
  
    --- 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 --
    
    Would this be better as `info`?


---

Reply via email to