jballment commented on issue #6427:
URL: https://github.com/apache/hop/issues/6427#issuecomment-3770811824

   org.apache.hop.core.logging.LogMessage defines getMessage() as
   
   ```
     public String getMessage() {
       String formatted = message;
       if (arguments != null) {
   ```
   
   Replacing it with:
   
   ```
     public String getMessage() {
       String formatted = message;
       if (arguments != null && arguments.length > 0) {
   ```
   Would be a quick fix as in my examples, I was not using arguments however 
the arguments object was initialised as an empty array.


-- 
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]

Reply via email to