パッケージ | com.adobe.gravity.utility.logging |
クラス | public class Logger |
継承 | Logger Object |
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
public class MyClass { static private const _logger:Logger = Logger.getLoggerByClass(MyClass); public function MyClass(myNumber:int) { _logger.finest("Constructor called with {myNumber}.", {myNumber: myNumber}, this); } }
パブリックプロパティ
プロパティ | 定義元 | ||
---|---|---|---|
constructor : Object
指定されたオブジェクトインスタンスのクラスオブジェクトまたはコンストラクター関数への参照です。 | Object | ||
name : String [読み取り専用]
The name of the Logger instance. | Logger |
パブリックメソッド
メソッド | 定義元 | ||
---|---|---|---|
Log a CONFIG message. | Logger | ||
Log a FINE message. | Logger | ||
Log a FINER message. | Logger | ||
Log a FINEST message. | Logger | ||
[静的]
Get a Logger. | Logger | ||
オブジェクトに指定されたプロパティが定義されているかどうかを示します。 | Object | ||
Log an INFO message. | Logger | ||
Determine whether a message will be logged. | Logger | ||
Object クラスのインスタンスが、パラメーターとして指定されたオブジェクトのプロトタイプチェーン内にあるかどうかを示します。 | Object | ||
Log a message at the specified level. | Logger | ||
指定されたプロパティが存在し、列挙できるかどうかを示します。 | Object | ||
ループ処理に対するダイナミックプロパティの可用性を設定します。 | Object | ||
Log a SEVERE message. | Logger | ||
ロケール固有の規則に従って書式設定された、このオブジェクトのストリング表現を返します。 | Object | ||
指定されたオブジェクトのストリング表現を返します。 | Object | ||
指定されたオブジェクトのプリミティブな値を返します。 | Object | ||
Log a WARNING message. | Logger |
プロパティの詳細
name | プロパティ |
メソッドの詳細
config | () | メソッド |
public function config(message:String, params:Object = null, actor:Object = null, error:Error = null):void
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
Log a CONFIG message.
パラメーター
message:String — The message to be logged.
| |
params:Object (default = null ) — Any parameters for the message.
| |
actor:Object (default = null ) — The object instance relating to the message (typically specified as this ).
| |
error:Error (default = null ) — An error associated with the message.
|
fine | () | メソッド |
public function fine(message:String, params:Object = null, actor:Object = null, error:Error = null):void
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
Log a FINE message.
パラメーター
message:String — The message to be logged.
| |
params:Object (default = null ) — Any parameters for the message.
| |
actor:Object (default = null ) — The object instance relating to the message (typically specified as this ).
| |
error:Error (default = null ) — An error associated with the message.
|
finer | () | メソッド |
public function finer(message:String, params:Object = null, actor:Object = null, error:Error = null):void
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
Log a FINER message.
パラメーター
message:String — The message to be logged.
| |
params:Object (default = null ) — Any parameters for the message.
| |
actor:Object (default = null ) — The object instance relating to the message (typically specified as this ).
| |
error:Error (default = null ) — An error associated with the message.
|
finest | () | メソッド |
public function finest(message:String, params:Object = null, actor:Object = null, error:Error = null):void
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
Log a FINEST message.
パラメーター
message:String — The message to be logged.
| |
params:Object (default = null ) — Any parameters for the message.
| |
actor:Object (default = null ) — The object instance relating to the message (typically specified as this ).
| |
error:Error (default = null ) — An error associated with the message.
|
getLoggerByClass | () | メソッド |
public static function getLoggerByClass(clss:Class, name:String = null, logger:ILogger = null):Logger
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
Get a Logger.
パラメーター
clss:Class — The class for which this logger will log messages.
| |
name:String (default = null ) — An optional name for the logger, typically only used when a single class needs to have multiple loggers.
| |
logger:ILogger (default = null ) — The actual ILogger object to use for logging; only specified in special circumstances.
|
Logger |
info | () | メソッド |
public function info(message:String, params:Object = null, actor:Object = null, error:Error = null):void
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
Log an INFO message.
パラメーター
message:String — The message to be logged.
| |
params:Object (default = null ) — Any parameters for the message.
| |
actor:Object (default = null ) — The object instance relating to the message (typically specified as this ).
| |
error:Error (default = null ) — An error associated with the message.
|
isLoggable | () | メソッド |
public function isLoggable(level:int):Boolean
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
Determine whether a message will be logged.
パラメーター
level:int — The logging level of the message.
|
Boolean — true if the message will be logged, false otherwise.
|
log | () | メソッド |
public function log(level:int, message:String, params:Object = null, actor:Object = null, error:Error = null):void
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
Log a message at the specified level.
パラメーター
level:int — The level for the message.
| |
message:String — The message to be logged.
| |
params:Object (default = null ) — Any parameters for the message.
| |
actor:Object (default = null ) — The object instance relating to the message (typically specified as this ).
| |
error:Error (default = null ) — An error associated with the message.
|
severe | () | メソッド |
public function severe(message:String, params:Object = null, actor:Object = null, error:Error = null):void
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
Log a SEVERE message.
パラメーター
message:String — The message to be logged.
| |
params:Object (default = null ) — Any parameters for the message.
| |
actor:Object (default = null ) — The object instance relating to the message (typically specified as this ).
| |
error:Error (default = null ) — An error associated with the message.
|
warning | () | メソッド |
public function warning(message:String, params:Object = null, actor:Object = null, error:Error = null):void
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
Log a WARNING message.
パラメーター
message:String — The message to be logged.
| |
params:Object (default = null ) — Any parameters for the message.
| |
actor:Object (default = null ) — The object instance relating to the message (typically specified as this ).
| |
error:Error (default = null ) — An error associated with the message.
|
Tue Jun 12 2018, 10:34 AM Z