GithubHelp home page GithubHelp logo

exceptions's Issues

Yell::Logger backend

hacked a backed for Yell, please add it if you like.

# lib/exceptions/backends/yell.rb

require 'exceptions/backend'
require 'exceptions/result'
require 'yell'

module Exceptions
  module Backends
    class YellLogger < ::Exceptions::Backend
      def initialize(log = nil, str = nil)
        @logger = log ||= yeller
        fail unless @logger.kind_of? Yell::Logger
        @str = str ||= "%s\n%s"
      end
      def notify(exception, options = {})
        @logger.fatal sprintf @str, exception.to_s, options.to_a[0].to_s
        YellResult.new
      end
      def rack_exception(exception, env)
        notify(exception, rack_env: env)
      end

      private
      def yeller
        return Object.logger if Object.logger.kind_of? Yell::Logger
        Yell.new :stdout, name: self.class
      end
    end
  end
  class YellResult < ::Exceptions::Result
  end
end

setup as usual:

# config.ru

# ...

Yell.new :stdout, name: Object,
  colors: true,
  trace: :fatal,
  format: Yell.format('%d [%5L] %p : %m',
                      '%d.%m.%Y %T.%L %Z')
Object.send :include, Yell::Loggable

use Rack::Exceptions, ::Exceptions::Backends::YellLogger.new

# ...

minimal approach:

# config.ru

require 'yell'
use Rack::Exceptions, ::Exceptions::Backends::YellLogger.new

just tested locally, so... guess it's perfect ๐Ÿ˜†

README lacks usage instructions for Rack::Excpetions

bit confusing in regards how other middleware is being configured. might help beginners:

use Rack::Exceptions, Exceptions::Backends::Logger.new

personally i'd like it this way:

use Rack::Exceptions, backend: :raiser

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.