Create note on discontinued development
[merb_mart.git] / www / tasks / growl.rake
blobbc44b31326d775add1ded88f385e84cea3dda4a1
2 desc 'Send log events to Growl (Mac OS X only)'
3 task :growl do
4   Logging::Logger['Webby'].add_appenders(Logging::Appenders::Growl.new(
5     "Webby",
6     :layout => Logging::Layouts::Pattern.new(:pattern => "%5l - Webby\000%m"),
7     :coalesce => true,
8     :separator => "\000"
9   ))
10 end
12 # EOF