ppkarwasz commented on issue #1476:
URL: 
https://github.com/apache/logging-log4j2/issues/1476#issuecomment-1840901068

   Hi @kgregory-chariot,
   
   The only usage of the **private** method `appendDate` is:
   
   ```java
       private static boolean appendSpecialTypes(final Object o, final 
StringBuilder str) {
           return StringBuilders.appendSpecificTypes(str, o) || appendDate(o, 
str);
       }
   ```
   
   The `StringBuilders.appendSpecificTypes` call deals with `java.sql.Date` and 
`java.sql.Time` the way you suggest: it calls `Object#toString()`.


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