Git Product home page Git Product logo

Comments (11)

inducer avatar inducer commented on June 12, 2024 1

That's a fair point. We should probably call catch_warnings on entry to the UI, then resetwarnings, and then override showwarning to direct Pudb's own log messages to its built-in console.

PRs implementing this would be welcome.

from pudb.

inducer avatar inducer commented on June 12, 2024 1

I mean, we really need to keep pudb's log level separate from that of the application, despite both of them running with the same Python runtime.

from pudb.

inducer avatar inducer commented on June 12, 2024 1

Sure. #650 was never going to help with logging, only warnings, sorry. PRs still welcome.

from pudb.

pjkersten avatar pjkersten commented on June 12, 2024 1

Ran into this while debugging a Flask app on linux. Would it be possible to ignore the logger.basicConfig settings to prevent this from happening?

from pudb.

cederom avatar cederom commented on June 12, 2024

Or just add --log-level switch / setting? :-)

from pudb.

inducer avatar inducer commented on June 12, 2024

Huh, I just realized I am talking about warnings, while you are talking about logging. The two are distinct, and both need handling.

from pudb.

inducer avatar inducer commented on June 12, 2024

#650 handles the warning end of this.

from pudb.

cederom avatar cederom commented on June 12, 2024

Negative :-( still here :-( Its like loglevel DEBUG is enabled somehow o_O

pudb-problem-20240429-2

from pudb.

cederom avatar cederom commented on June 12, 2024

Okay, this is caused by the Kivy framework that I use attaching to a root logger by default [1] thus also capturing pudb logger that also seems to attach to the root logger. Quck fix is to use PYTHON or MIXED mode in Kivy logger when working with pudb.

[1] https://github.com/kivy/kivy/blob/4a8caf561c37944a21bc004bf8faae2d8237e8a1/kivy/logger.py#L78

from pudb.

inducer avatar inducer commented on June 12, 2024

The approach I would prefer would be to swap out the logging configuration for one that logs to pudb's built-in console while the UI is active, similar to #650. Not at the top of my list, but PRs definitely still welcome.

from pudb.

cederom avatar cederom commented on June 12, 2024

Ran into this while debugging a Flask app on linux. Would it be possible to ignore the logger.basicConfig settings to prevent this from happening?

The problem is using root logger by both pudb and your application (Python uses object references not copies). In my case (Kivy) it was possible to change application behavior not to capture and dump everything from the root logger (see description above). That solved clobbered display for me. I guess Flask can be configured in a similar way but I have no experience with Flask sorry.

I guess the best solution would be setting up some sort of internal logger (handler) dedicated for pudb and use its output only in built-in console.

from pudb.

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.