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 Object implements com.infoteria.asteria.httpclient.HttpLogger
HttpLoggerを継承したロガークラスです。
HttpClient.execute(com.infoteria.asteria.httpclient.HttpRequest, HttpLogger) の第二引数に渡すことができます。
  • Constructor Summary

    Constructors
    Constructor
    Description
    コンストラクター
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    デバッグレベルでログを出力します。
    フローをデバッグモードで実行した時に情報レベルでログ出力されます。
    void
    エラーレベルでログを出力します。
    void
    info(String str)
    情報レベルでログを出力します。

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Logger

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

    • info

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

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

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