Giter Site home page Giter Site logo

Comments (8)

ohler55 avatar ohler55 commented on May 18, 2024

That actually brings up two issue. The Rack spec say the error stream should be on env["rack.errors"] unless my reading of the spec is way off. That might be okay if the value of the RACK_ERRORS is "rack.errors". Is it?

Second, the spec says the only methods needed on the error stream are puts, write, flush, and close. From you description it sounds like the Rack logger expects a to_s also. What does the rack logger normally return? Anything other than something like #<Foo:0x00007ff59d801e80>?

from agoo.

tomas avatar tomas commented on May 18, 2024

Don't know. Rack::Logger simply calls Logger.new(env[RACK_ERRORS]). Shouldn't the Ruby Logger class detect that the passed object isn't a file but a stream?

from agoo.

ohler55 avatar ohler55 commented on May 18, 2024

You would think so. I'll add a to_s that looks like the standard Ruby to_s and maybe you can see if things work.

from agoo.

tomas avatar tomas commented on May 18, 2024

I think I found the what's going on:

  class LogDevice
    def set_dev(log)
      if log.respond_to?(:write) and log.respond_to?(:close)
        @dev = log
      else
        @dev = open_logfile(log)
        @dev.sync = true
        @filename = log
      end
    end
  end

Your ErrorStream class is missing a #close method, apparently.

from agoo.

ohler55 avatar ohler55 commented on May 18, 2024

I'll have that fixed tonight. Thanks.

from agoo.

ohler55 avatar ohler55 commented on May 18, 2024

Had a slow moment so made the fix. It is in the close branch if you would like to try it.

from agoo.

ohler55 avatar ohler55 commented on May 18, 2024

Does this work for you?

from agoo.

tomas avatar tomas commented on May 18, 2024

Indeed it does. Thanks @ohler55!

from agoo.

Related Issues (20)

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.