[
https://issues.apache.org/jira/browse/NIFI-7387?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Mark Payne resolved NIFI-7387.
------------------------------
Fix Version/s: 1.13.0
Resolution: Fixed
> Update ComponentLog to use varargs in addition to array
> -------------------------------------------------------
>
> Key: NIFI-7387
> URL: https://issues.apache.org/jira/browse/NIFI-7387
> Project: Apache NiFi
> Issue Type: Improvement
> Components: Core Framework
> Affects Versions: 1.11.4
> Reporter: Mark Bean
> Assignee: Mark Bean
> Priority: Minor
> Fix For: 1.13.0
>
> Time Spent: 1h 40m
> Remaining Estimate: 0h
>
> The ComponentLog interface uses an Object array as the collection of
> substitution values for the log message. This requires calls to the methods
> to create an object array as in:
> logger.info("value is {}", new Object[] { someValue });
> Updating the interface to accept varargs allows for cleaner, more concise
> code as in:
> logger.info("value is {}", someValue);
--
This message was sent by Atlassian Jira
(v8.3.4#803005)