[ 
https://issues.apache.org/jira/browse/LOG4J2-2297?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kedar Joshi updated LOG4J2-2297:
--------------------------------
    Description: 
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.
  

  was:
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.
  


> 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
>            Priority: Major
>
> 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)

Reply via email to