You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@logging.apache.org by "Kedar Joshi (JIRA)" <ji...@apache.org> on 2018/03/30 11:21:00 UTC

[jira] [Created] (LOG4J2-2297) java.sql.Time objects are incorrectly formatted

Kedar Joshi created LOG4J2-2297:
-----------------------------------

             Summary: java.sql.Time objects are incorrectly formatted
                 Key: LOG4J2-2297
                 URL: https://issues.apache.org/jira/browse/LOG4J2-2297
             Project: Log4j 2
          Issue Type: Bug
            Reporter: Kedar Joshi


Log4j2 incorrectly formats instance objects of `java.sql.Time`. Consider following case -

{{
 final Time time = Time.valueOf("12:00:00");
 logger.info("Time : {}", time);
 }}
  
 Now, the expected output is `Time : 12:00:00` but instead it is logged as `1970-01-01T12:00:00.000+0530`. Since `java.sql.Time` has no date component, it is wrong to format it this way.
  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)