hi.. I'd like to create a custom log...but I am kinda stuck now ( I
have read some tutorials for custom but it's a little different than
what I want). Basically, I want to customize so that I can do like this
myLog.getLogger("someFilterWebService").info(arg1,arg2)
it's going to write to the server. and I want to specify the log file
name and the message.
I got the customize target done. But in order to do "info(arg1,arg2) I
need to override lots of methods in mx.logging
At this moment the problem is that I need to have my own log event ; I
did extends the LogEvent but I don't know how or where to create the
eventlistener for my own log event (and how to define the type event
for my own log event). any help will be appreciated thanks..