Open davidianstyle opened 1 year ago
@davidianstyle I really want to know how you print these logs.
pyps
API has no logs by default, and your logs look like they come from comtypes
Hi @loonghao, you can reproduce by cloning this project:
https://github.com/davidianstyle/MTG-Proxyshop.git
and then running (with Python 3.11):
$ python311 -m pip install -r requirements.txt
$ python311 -m pip install kivy --pre --no-deps --index-url https://kivy.org/downloads/simple/
$ python311 -m pip install "kivy[base]" --pre --extra-index-url https://kivy.org/downloads/simple/
$ python311 main.py
[DEBUG ]
logs that I mentioned in the issue description
Describe the bug There doesn't seem to be a way to easily adjust the log level (ie.
INFO
instead ofDEBUG
):This ends up flooding the logs making it hard to see useful information.
To Reproduce Steps to reproduce the behavior:
app = ps.Application() app.openDialog()
(do anything else with app)