[Lift] Re: Debugging CometActors?

2008-12-10 Thread David Pollak
On Wed, Dec 10, 2008 at 7:51 PM, Jorge Ortiz <[EMAIL PROTECTED]> wrote: > Yeah, something like that :) > > In the absence of props files, where does Log.error go? It's not showing up > in the console... Hmmm how about adding an additional handler to ActorWatcher to dump out more info? > >

[Lift] Re: Debugging CometActors?

2008-12-10 Thread Jorge Ortiz
Yeah, something like that :) In the absence of props files, where does Log.error go? It's not showing up in the console... And even then, something is kinda funky. After my actor dies, ctrl-c won't fully kill Jetty. I have to kill -9 it from another Terminal to make it fully die. --j On Wed, De

[Lift] Re: Debugging CometActors?

2008-12-10 Thread David Pollak
You mean like: object ActorWatcher extends Actor { def act = loop { react { case Exit(actor: Actor, why: Throwable) => failureFuncs.foreach(f => tryo(f(actor, why))) case _ => } } private def startAgain(a: Actor, ignore: Throwable) {a.start} private def logAct