[YMIR-292] RequestLoggingFilterでResponseの値の表示項目追加 Created: 2009-01-21 Updated: 2009-02-02 Resolved: 2009-01-22 |
|
Status: | Closed |
Project: | Ymir |
Component/s: | ymir-core |
Affects Version/s: | 1.0.0 |
Fix Version/s: | 1.0.1 |
Type: | Improvement | Priority: | Major |
Reporter: | jflute | Assignee: | skirnir |
Resolution: | Fixed | Votes: | 0 |
Labels: | None |
Description |
【概要】 sb.append("Response class=").append(response.getClass().getName());
を以下のようにお願いします。 sb.append("Response=").append(response.getClass().getName()); sb.append(LF).append(IND); sb.append("CharacterEncoding=").append(response.getCharacterEncoding()); sb.append(", ContentType=").append(response.getContentType()); sb.append(", Locale=").append(response.getLocale()); ※Requestに合わせて「Response class」を「Response」にしています。 |
Comments |
Comment by skirnir [ 2009-02-02 ] |
確認ありがとうございました。closeとします。 |
Comment by jflute [ 2009-01-22 ] |
ありがとうございます。 Response=org.apache.catalina.connector.ResponseFacade CharacterEncoding=UTF-8, ContentType=text/html;charset=UTF-8, Locale=ja_JP |
Comment by skirnir [ 2009-01-22 ] |
対処しました。確認してみてください。 |