[
https://issues.apache.org/jira/browse/SAMZA-103?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13843502#comment-13843502
]
Chris Riccomini commented on SAMZA-103:
---------------------------------------
Probably need to do a massive grep, and giant update patch to switch everything
over.
> Change string concatenation style
> ---------------------------------
>
> Key: SAMZA-103
> URL: https://issues.apache.org/jira/browse/SAMZA-103
> Project: Samza
> Issue Type: Bug
> Components: container, kafka, kv, test, yarn
> Affects Versions: 0.6.0
> Reporter: Chris Riccomini
>
> Most of Samza's logging and output uses the style:
> {code}
> warn("Some error for %s happened." format (myVar))
> {code}
> This style is actually really problematic because it leads to runtime
> exceptions in cases where there is an extra %s or there was a %d when it
> should have been a %s.
> I think we should switch everything over to the standard Java style:
> {code}
> warn("Some error for " + myVar + " happened.")
> {code}
--
This message was sent by Atlassian JIRA
(v6.1.4#6159)