Pakiet | mx.logging |
Klasa | public class Log |
Dziedziczenie | Log Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Loggers are singleton instances created for a particular category of information. Typically, the category is the package name of the component that desires to log information. The category provides users the ability to specify what log information they are interested in. Multiple categories can be selected and combined with regular expressions. This allows for both broad and narrow logging information to be acquired. For example, you might be interested in all logging information under the "mx.messaging" and "mx.rpc" packages and want the output from these packages to be formatted as XML. To get the all of the logging information under the "mx.messaging" category including sub-packages and components a wildcard expression is required, such as "mx.messaging.*". See the code example below for more details.
Targets provide the output mechanism of the data being logged.
This mechanism typically includes formatting, transmission, or storage, but
can be anything possible under the VM.
There are two targets provided: MiniDebugTarget
and
TraceTarget
.
Each of these writers take the current log information and "sends" it
somewhere for display and/or storage.
Targets also provide the specification of what log data to output.
Metoda | Zdefiniowane przez | ||
---|---|---|---|
[statyczny]
Allows the specified target to begin receiving notification of log
events. | Log | ||
[statyczny]
This method removes all of the current loggers from the cache. | Log | ||
[statyczny]
Returns the logger associated with the specified category. | Log | ||
[statyczny]
This method checks the specified string value for illegal characters. | Log | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
[statyczny]
Indicates whether a debug level log event will be processed by a
log target. | Log | ||
[statyczny]
Indicates whether an error level log event will be processed by a
log target. | Log | ||
[statyczny]
Indicates whether a fatal level log event will be processed by a
log target. | Log | ||
[statyczny]
Indicates whether an info level log event will be processed by a
log target. | Log | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
[statyczny]
Indicates whether a warn level log event will be processed by a
log target. | Log | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
[statyczny]
Stops the specified target from receiving notification of log
events. | Log | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg reprezentujący określony obiekt. | Object | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
addTarget | () | metoda |
public static function addTarget(target:mx.logging:ILoggingTarget):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Allows the specified target to begin receiving notification of log events.
Parametry
target:mx.logging:ILoggingTarget — specific target that should capture log events.
|
flush | () | metoda |
public static function flush():void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
This method removes all of the current loggers from the cache.
Subsquent calls to the getLogger()
method return new instances
of loggers rather than any previous instances with the same category.
This method is intended for use in debugging only.
getLogger | () | metoda |
public static function getLogger(category:String):ILogger
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns the logger associated with the specified category.
If the category given doesn't exist a new instance of a logger will be
returned and associated with that category.
Categories must be at least one character in length and may not contain
any blanks or any of the following characters:
[]~$^&\/(){}<>+=`!#%?,:;'"@
This method will throw an InvalidCategoryError
if the
category specified is malformed.
Parametry
category:String — The category of the logger that should be returned.
|
ILogger — An instance of a logger object for the specified name.
If the name doesn't exist, a new instance with the specified
name is returned.
|
hasIllegalCharacters | () | metoda |
public static function hasIllegalCharacters(value:String):Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
This method checks the specified string value for illegal characters.
Parametry
value:String — The String to check for illegal characters.
The following characters are not valid:
[]~$^&\/(){}<>+=`!#%?,:;'"@
|
Boolean — true if there are any illegal characters found,
false otherwise
|
isDebug | () | metoda |
public static function isDebug():Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Indicates whether a debug level log event will be processed by a log target.
ZwracaBoolean — true if a debug level log event will be logged; otherwise false.
|
isError | () | metoda |
public static function isError():Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Indicates whether an error level log event will be processed by a log target.
ZwracaBoolean — true if an error level log event will be logged; otherwise false.
|
isFatal | () | metoda |
public static function isFatal():Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Indicates whether a fatal level log event will be processed by a log target.
ZwracaBoolean — true if a fatal level log event will be logged; otherwise false.
|
isInfo | () | metoda |
public static function isInfo():Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Indicates whether an info level log event will be processed by a log target.
ZwracaBoolean — true if an info level log event will be logged; otherwise false.
|
isWarn | () | metoda |
public static function isWarn():Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Indicates whether a warn level log event will be processed by a log target.
ZwracaBoolean — true if a warn level log event will be logged; otherwise false.
|
removeTarget | () | metoda |
public static function removeTarget(target:mx.logging:ILoggingTarget):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Stops the specified target from receiving notification of log events.
Parametry
target:mx.logging:ILoggingTarget — specific target that should capture log events.
|
Tue Jun 12 2018, 12:06 PM Z