markap14 commented on pull request #5349: URL: https://github.com/apache/nifi/pull/5349#issuecomment-907486140
I'm a -1 on this change actually. As noted in the Jira: This is the standard practice for processors and is generally desirable. The processor should log at an INFO level what it does with a given FlowFile. From the perspective of the Processor, it makes sense for this to be at an INFO level. This, of course, can become incredibly verbose in the logs, which is why logback, by default, has the log level for the org.apache.nifi.processors package set to WARN. But you can then change it to log at an INFO level for specific processors when it makes sense. Changing processors to start logging things like this at debug means that you wouldn't be able to see which FlowFiles are operated on/whats happening at a high level from logs, you can only get that if DEBUG is enabled, which can result in huge amounts of unnecessary logging. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
