com.infoteria.asteria.flowlibrary2.component
Class Utility.Logger

java.lang.Object
  |
  +--com.infoteria.asteria.flowlibrary2.component.Utility.Logger
All Implemented Interfaces:
com.infoteria.asteria.httpclient.HttpLogger
Enclosing class:
Utility

public static class Utility.Logger
extends java.lang.Object
implements com.infoteria.asteria.httpclient.HttpLogger

HttpLoggerを継承したロガークラスです。
HttpClient.execute(com.infoteria.asteria.httpclient.HttpRequest, HttpLogger) の第二引数に渡すことができます。


Constructor Summary
Logger(ExecuteContext context)
          コンストラクター
 
Method Summary
 void debug(java.lang.String str)
          デバッグレベルでログを出力します。
フローをデバッグモードで実行した時に情報レベルでログ出力されます。
 void error(java.lang.String str)
          エラーレベルでログを出力します。
 void info(java.lang.String str)
          情報レベルでログを出力します。
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Logger

public Logger(ExecuteContext context)
コンストラクター
Parameters:
context - 実行コンテキスト
Method Detail

info

public void info(java.lang.String str)
情報レベルでログを出力します。
Specified by:
info in interface com.infoteria.asteria.httpclient.HttpLogger
Parameters:
str - ログメッセージ

error

public void error(java.lang.String str)
エラーレベルでログを出力します。
Specified by:
error in interface com.infoteria.asteria.httpclient.HttpLogger
Parameters:
str - ログメッセージ

debug

public void debug(java.lang.String str)
デバッグレベルでログを出力します。
フローをデバッグモードで実行した時に情報レベルでログ出力されます。
Specified by:
debug in interface com.infoteria.asteria.httpclient.HttpLogger
Parameters:
str - ログメッセージ