After banging my head trying to get Jetty to shutdown cleanly having
been playing with actors I came across this entry in the wiki
http://wiki.liftweb.net/index.php/FAQ#How_do_I_execute_code_when_my_application_is_unloaded.3F
which suggests adding your own function to LiftRules.unloadHooks
except LiftRules.unloadHooks += myUnloader _ does not compile due to
"reassignment to val" but LiftRules.unloadHooks.append(myUnloader)
does. Has my lack of Scala experience got the better of me again or
has the api changed since the wiki entry was added?
-- Ewan