views:

13

answers:

0

I've been investigating logging in Flex, and I really like what I see in Log4Fx. Their runtime log view in Eclipse is great -- and I've been able to add it to one of my views:

<mx:Application layout="vertical" minHeight="600" minWidth="955" 
                xmlns:mx="http://www.adobe.com/2006/mxml"          
                xmlns:view="view.*" 
                xmlns:components="com.theriabook.util.logging.components.*"
                xmlns:faratasystems="http://www.faratasystems.com/2006/components"&gt;


    <mx:HBox width="100%">
       <view:LeftPanel/>
      <view:RightPanel/>
    </mx:HBox>

   <Log4FlexLoggingTarget xmlns="*" />
   <components:LogsPanel />
</mx:Application>

Unfortunately, I can't find any documentation on this component to figure out how to have it capture runtime log content. Is it possible? Ideally, users could configure their log levels with the Logger Manager, and then click a button which would launch this logger when they wanted to see more information.