Strutsリファレンス(逆引き)

Strutsリファレンス
 
Web struts.wasureppoi.com
SimpleLogを使用する
スポンサード リンク

Simpleログは、commons-loggingに標準で付属しているロギングAPIで、出力したログメッセージを標準エラー出力に出力します。

設定ファイルは、クラスパスの通ったディレクトリにプロパティファイル「simplelog.properties」を配置します。

SimpleLogのログ出力レベル
 trace、debug、info、warn、error、fatal

simplelog.properties
プロパティ 定義内容
org.apache.commons.logging.simplelog.defaultlog デフォルトのログ出力レベルを指定します。
org.apache.commons.logging.simplelog.log.xxxx

「xxx」で指定したロガーのログ出力レベルを指定します。指定しない場合は、デフォルトが適用されます。xxxはLogFactory#getLog(xxx)で指定した値

org.apache.commons.logging.simplelog.showlogname org.apache.commons.logging.impl.SimpleLog
org.apache.commons.logging.simplelog.showdatetime trueを指定すると、出力メッセージ内にLog インスタンス名を含めます。デフォルトはfalse
org.apache.commons.logging.simplelog.dateTimeFormat trueを指定すると、出力メッセージ内に現在の日付と時間を含めたいデフォルトはfalse

log4jを使用する場合のcommons-logging.propertiesの設定例


org.apache.commons.logging.impl.SimpleLog.defaultlog=INFO
org.apache.commons.logging.simplelog.log.sample.pg.Logging=WARN


出力結果(ソースファイルは前頁のログ出力ソース


[WARN] Logging - LOG WARN
[ERROR] Logging - LOG ERROR
[FATAL] Logging - LOG FATAL



スポンサード リンク


Commonsでログ出力(commons-logging)
使用するロギングAPIの設定(commons-logging.properties)
SimpleLogを使用する

Commonsへ
忘れっぽいエンジニアのJakarta Strutsリファレンス TOPへ