[
https://issues.apache.org/jira/browse/NIFI-7387?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Mark Bean updated NIFI-7387:
----------------------------
Summary: Update ComponentLog to use varargs in addition to array (was:
Update ComponentLog to use varargs instead of array)
> 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
> Time Spent: 1h 20m
> 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)