(Jul-11-2024, 12:19 PM)robertkwild Wrote: can i get loguru to log debug messages aswell that the system throws aswell ie what i see in the console window aswellCan log most stuff,so eg like this will GET/POST and status code.
@app.route("/chuck") def chuck(): url = "https://api.chucknorris.io/jokes/random" response = requests.get(url) chuck_joke = response.json()["value"] logger.info(request.method) logger.debug(response.status_code) logger.debug(chuck_joke) return chuck_joke
Output:2024-07-11 17:45:05.155 | INFO | app:chuck:20 - GET
2024-07-11 17:45:05.193 | DEBUG | app:chuck:21 - 200
2024-07-11 17:45:05.196 | DEBUG | app:chuck:22 - For fun, Chuck Norris crab fishes in the Bearing Sea with just a snorkel and a laundry basket.
2024-07-11 17:45:07.096 | INFO | app:chuck:20 - GET
2024-07-11 17:45:07.098 | DEBUG | app:chuck:21 - 200
2024-07-11 17:45:07.100 | DEBUG | app:chuck:22 - IF CHUCK NORRIS GIVES YOU A ROUND HOUSE KICK IN YOUR DREAMS YOU REALY DIE
Can also log request.headers
here will get a lot info,most not uselful so need parse if need some of this info.Example.
Output:.....
Hx-Target: output_api
Hx-Current-Url: http://127.0.0.1:5000/
Sec-Ch-Ua-Mobile: ?0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36
Sec-Ch-Ua-Platform: "Windows"
.....