Mantis - Resin
|
|||||
Viewing Issue Advanced Details | |||||
|
|||||
ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
5071 | minor | always | 05-09-12 23:43 | 05-29-12 11:41 | |
|
|||||
Reporter: | rickHigh | Platform: | |||
Assigned To: | ferg | OS: | |||
Priority: | normal | OS Version: | |||
Status: | closed | Product Version: | |||
Product Build: | Resolution: | fixed | |||
Projection: | none | ||||
ETA: | none | Fixed in Version: | 4.0.28 | ||
|
|||||
Summary: | 0005071: Logger.exiting does not work with Resin for formmating parameters | ||||
Description: |
log.exiting(this.getClass().getName(), "updateBook", new Object[]{id, title, description, price, pubDate}); Not formating parameters correctly with default EL formatter from Resin. [12-05-09 23:26:57.284]FINER BookRepositoryJDBCImpl updateBook msg= ENTRY 5 Peace and Peace 33 05/05/1999 [12-05-09 23:26:57.288]FINER BookRepositoryJDBCImpl updateBook msg= RETURN [Ljava.lang.Object;@24164d75 The return should read _______ BookRepositoryJDBCImpl updateBook msg= RETURN 5 Peace and Peace 33 05/05/1999 Not BookRepositoryJDBCImpl updateBook msg= RETURN [Ljava.lang.Object;@24164d75 _________ @Override public void updateBook(final String id, final String title, final String description, final String price, final String pubDate) { if (log.isLoggable(Level.FINER)) { log.entering(this.getClass().getName(), "updateBook", new Object[]{id, title, description, price, pubDate}); } ... if (log.isLoggable(Level.FINER)) { log.exiting(this.getClass().getName(), "updateBook", new Object[]{id, title, description, price, pubDate}); } } |
||||
Steps To Reproduce: | |||||
Additional Information: | |||||
Relationships | |||||
Attached Files: |
Notes | |||||
|
|||||
|
|