vote up 0 vote down star

I have created a simple test application with the following code

var i : int; for (i=0; i<3000000; i++){ trace(i); }

When I run the application, it's very slow to load, which means the "trace" is running. I check the flash player by right-clicking, the debugger option is not enable.

So I wonder if there is an option to put in compiler to exclude the trace. Otherwise, I have to remove manually all the trace in the program.

Are there any other options of compiler to optimize the flex application in a maximum way?

Thanks

flag

0% accept rate

5 Answers

vote up 1 vote down

You could do a find/replace on the entire project. search for 'trace(' and replace with '//trace('. That would be quick enough and easily undone.

link|flag
That's a good idea. But why flex doesn't provide compiler option for debug and release version? – maoanz May 15 at 10:49
I'm not from Adobe so I dont know :) Its not good practice though to leave trace statements in your code anyway. They should always be removed before checking anything in, but ideals and reality are different things so for some devs it would be a nice feature to have. Personally I don't like trace, prefer to use breakpoints, very rarely have to use trace. – kenneth May 15 at 11:13
vote up 0 vote down

The mxmlc argument debug allows you to add or remove debug features from SWF files. The value of the debug argument is false by default for the command line compiler, but in Flex Builder, you have to manually create a non-debug SWF. According to the documentation on compiler arguments, debug information added to the SWF includes "line numbers and filenames of all the source files". There is no mention of trace() function calls, and I don't think there's a way to remove them through a compiler argument, but you're welcome to check the linked document for the entire list of available arguments.

link|flag
vote up 1 vote down

There are two compiler options that you should set: -debug=false -optimize=true. In Flex Builder or Eclipse, look under Project->Properties->Flex Compiler and fill in the box labeled "Additional compiler arguments."

link|flag
vote up 1 vote down

There is a really sweet feature built into Flex called the logging API (you can read more about it here http://livedocs.adobe.com/flex/3/html/logging%5F09.html).

Basically, you log (trace) things in a different way, admittedly with slightly more code than a standard trace, but it allows you much greater flexibility. This is an example:

import mx.logging.Log;
Log.getLogger("com.edibleCode.logDemo").info("This is some info");
Log.getLogger("com.edibleCode.logDemo").error("This is an error");

Then all you need to do is create a trace target in your main application file, something like:

<mx:TraceTarget id="logTarget" fieldSeparator=" - " includeCategory="true" includeLevel="true" includeTime="true">

    		<mx:filters>
                <mx:Array>
                	<mx:String>*</mx:String>
                </mx:Array>
            </mx:filters>

            <!--
            0 = ALL, 2 = DEBUG, 4 = INFO, 6 = WARN, 8 = ERROR, 1000 = FATAL
            -->
            <mx:level>0</mx:level>

    </mx:TraceTarget>

And register the trace with:

Log.addTarget(logTarget);

This provides several benefits over the normal trace:

  • You can filter (turn off) traces to only see what you want:
    • Either by modifying the filters array
    • Or the level to show only error or fatal messages
  • You can replace the trace target with any other type of logging interface, e.g.
    • A TextField
    • A text file
link|flag
vote up 1 vote down

Use conditional compilation, more here.

In your code set:

CONFIG::debugging { 
    trace(i);
}

Then go to Project->Properties->Flex Compiler and add

-define=CONFIG::debugging,false
or
-define=CONFIG::debugging,true
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.