Giter Site home page Giter Site logo

chromelogger-python's People

Contributors

ccampbell avatar dzerrenner avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

chromelogger-python's Issues

Introduce thread safety

You might want to put rows inside a threading.local() to play nice with multi-threaded servers.

Introduce compatibility with logging

Something like chromelogger.install_logging(level=logging.DEBUG) would be very useful. Or just logging.root.addHandler(chromelogger.ChromeloggerHandler()).

Not working on Firefox

Hi,
Firefox has an option to activate server logging using this protocol.
It is not working because in:

def _log(args):
    global backtraces

    type = args[0:1]
    ....

type it is assigning a array (slice returns an array) and somehow the firefox was throwing an error about not getting type method.
I've changed to:

def _log(args):
    global backtraces

    type = args[0:1][0]
    ....

Seems to work in chrome and in the firefox implementation.
Does it makes sense to you? Do you think it's a bug in firefox implementation?

Thanks!.

PD: I'm testing in django project and linux.

Does chromelogger work over SSL?

We found issues trying to use chromelogger yesterday on our testing server which uses SSL. We had everything working locally over vanilla http but as soon as we stepped up to our testing server over SSL, we were throwing errors. We were running this on Apache using wsgi, if that matters. We spent some time debugging and were getting no where.

Thanks in advance.

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.