Logging everything in BlazeDS
Posted by cornel | Filed under Uncategorized
When you create a Flex/Java project in Flex Builder the logging tag in the services-config.xml file looks like that:
<logging> <target class="flex.messaging.log.ConsoleTarget" level="Error"> <properties> <prefix>[BlazeDS] </prefix> <includeDate>false</includeDate> <includeTime>false</includeTime> <includeLevel>false</includeLevel> <includeCategory>false</includeCategory> </properties> <filters> <pattern>Endpoint.*</pattern> <pattern>Service.*</pattern> <pattern>Configuration</pattern> </filters> </target> </logging>
Unfortunately you can lose some important error messages with this <filters> configuration. That’s why its better to edit the file after creating the project and change the filters section to *
<filters> <pattern>*</pattern> </filters>
September 8th, 2009 at 3:13 pm
[...] 8/09/2009 Posted in 5584 by robertopriz on September 8, 2009 login evrything in BlazeDs http://cornelcreanga.com/2009/09/logging-everything-in-blazeds [...]