Pakiet | mx.olap |
Klasa | public class OLAPTrace |
Dziedziczenie | OLAPTrace Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
trace()
method internally to write out the log information.
You must set TraceOutputFileEnable=1
in mm.cfg, and use the
Debug Flash Player or AIR Debug Launcher to generate trace output.
Powiązane elementy interfejsu API
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
traceLevel : int = 1 [statyczny]
The current trace level, which determines the amount of trace information
written to the log file, TRACE_LEVEL_1 writes the least amount of
information to the log file, and TRACE_LEVEL_3 writes the most. | OLAPTrace | ||
traceOn : Boolean = true [statyczny]
Set to true to enable trace output. | OLAPTrace |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
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 | ||
[statyczny]
Writes trace information to the log file
You must set TraceOutputFileEnable=1 in mm.cfg, and use the
Debug Flash Player or AIR Debug Launcher to generate
trace output by calling this method.
| OLAPTrace | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
Stała | Zdefiniowane przez | ||
---|---|---|---|
TRACE_LEVEL_1 : int = 1 [statyczny]
Specifies to write minimal trace information to the log file. | OLAPTrace | ||
TRACE_LEVEL_2 : int = 2 [statyczny]
Specifies to write more trace information to the log file than TRACE_LEVEL_1. | OLAPTrace | ||
TRACE_LEVEL_3 : int = 3 [statyczny]
Specifies to write the most trace information to the log file. | OLAPTrace |
traceLevel | właściwość |
public static var traceLevel:int = 1
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
The current trace level, which determines the amount of trace information
written to the log file, TRACE_LEVEL_1
writes the least amount of
information to the log file, and TRACE_LEVEL_3
writes the most.
All trace information output by a call to the traceMsg()
method
with a level
argument less than traceLevel
is sent to the log file.
Wartością domyślną jest TRACE_LEVEL_1.
traceOn | właściwość |
public static var traceOn:Boolean = true
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Set to true
to enable trace output.
Wartością domyślną jest true.
traceMsg | () | metoda |
public static function traceMsg(msg:String, level:int = 1):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Writes trace information to the log file
You must set TraceOutputFileEnable=1
in mm.cfg, and use the
Debug Flash Player or AIR Debug Launcher to generate
trace output by calling this method.
Parametry
msg:String — The trace message.
| |
level:int (default = 1 ) — The trace level of the message.
Only trace messages with a level argument less than traceLevel
are sent to the log file.
|
TRACE_LEVEL_1 | Stała |
public static const TRACE_LEVEL_1:int = 1
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Specifies to write minimal trace information to the log file.
TRACE_LEVEL_2 | Stała |
public static const TRACE_LEVEL_2:int = 2
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Specifies to write more trace information to the log file than TRACE_LEVEL_1
.
TRACE_LEVEL_3 | Stała |
public static const TRACE_LEVEL_3:int = 3
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Specifies to write the most trace information to the log file.
Tue Jun 12 2018, 12:06 PM Z