Product Registration in Flex

Is there a way to capture the trace instructions of your Flex application while it is not running in debug mode?

Or is there another way to display registration information when starting the debugger?

I'm currently trying to fix an error that only appears in a very specific deployment scenario, but I might have noticed that in some cases it is useful for customers to send logs to technical support when they report errors or other problems.

+5
source share
4 answers

I assume you're talking about Adobe Flex aiming for Flash Player?

, , , , (, , , , ). . Flex logging framework - .

- : Log , log(), debug(), error() .., , , trace(), " ", LocalConnection / Socket ( , , , LocalConnection), , .

, trace() , .

+3

Google Code Thunder Bolt, , FireBug Firefox ( , , .)

, :

import org.osflash.thunderbolt.Logger;

var myNumber: int = 5;
var myString: String = "Lorem ipsum";
Logger.error ("Logging two objects: A number typed as int and a string", myNumber, myString);
+2

XPanel Farata Systems. Windows, API Flex 3 Flex, . , , ... , Google .

- , JavaScript. "" , DHTML. Flex JavaScript, , . , . , .

, - . , .

0

All Articles