# File lib/ramaze/log/growl.rb, line 46
      def log(tag, *args)
        begin
          notify(tag.to_s, Time.now.strftime("%X"), args.join("\n")[0..100])
        rescue Errno::EMSGSIZE
          # Send size was to big (not really), ignore
        end
      end