Pakket | mx.olap |
Klasse | public class OLAPTrace |
Overerving | OLAPTrace Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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.
Verwante API-elementen
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
traceLevel : int = 1 [statisch]
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 [statisch]
Set to true to enable trace output. | OLAPTrace |
Methode | Gedefinieerd door | ||
---|---|---|---|
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
[statisch]
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 | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Constante | Gedefinieerd door | ||
---|---|---|---|
TRACE_LEVEL_1 : int = 1 [statisch]
Specifies to write minimal trace information to the log file. | OLAPTrace | ||
TRACE_LEVEL_2 : int = 2 [statisch]
Specifies to write more trace information to the log file than TRACE_LEVEL_1. | OLAPTrace | ||
TRACE_LEVEL_3 : int = 3 [statisch]
Specifies to write the most trace information to the log file. | OLAPTrace |
traceLevel | eigenschap |
public static var traceLevel:int = 1
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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.
De standaardwaarde is TRACE_LEVEL_1.
traceOn | eigenschap |
public static var traceOn:Boolean = true
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Set to true
to enable trace output.
De standaardwaarde is true.
traceMsg | () | methode |
public static function traceMsg(msg:String, level:int = 1):void
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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.
Parameters
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 | Constante |
public static const TRACE_LEVEL_1:int = 1
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Specifies to write minimal trace information to the log file.
TRACE_LEVEL_2 | Constante |
public static const TRACE_LEVEL_2:int = 2
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Specifies to write more trace information to the log file than TRACE_LEVEL_1
.
TRACE_LEVEL_3 | Constante |
public static const TRACE_LEVEL_3:int = 3
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Specifies to write the most trace information to the log file.
Wed Jun 13 2018, 11:42 AM Z