Python Forum
keeping logs for every success fail attempt
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
keeping logs for every success fail attempt
#21
(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 aswell
Can 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" .....
Reply
#22
at last loguru works with same option delay=True

logger.remove(0)
logger.add("logs\\password.log", format="{time:YYYY/MM/DD HH:mm:ss} | {level} | {message}", rotation="20 seconds", delay=True)
a lot less code!

now i want it to save the logs as the same syntax as above ie

time:YYYY/MM/DD HH:mm:ss-password.log

[Image: password.png]

as you can see its adding weird numbers at the end

thanks,
rob
Reply
#23
ok done

logger.remove(0)
logger.add("logs\\{time:YYYY-MM-DD-HH-mm-ss}-password.log", format="{time:YYYY/MM/DD HH:mm:ss} | {level} | {message}", rotation="1 day", retention="2 days", delay=True)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  simple if fail, what am I missing? ajkrueger25 2 724 Nov-13-2024, 04:21 AM
Last Post: ajkrueger25
Question PDF Automation with Unique ID + Logs in xls File pollos 1 744 Jul-09-2024, 04:19 PM
Last Post: Pedroski55
  time difference bettwenn logs enkliy 14 3,247 Nov-21-2023, 04:51 PM
Last Post: rob101
  Why does [root.destroy, exit()]) fail after pyinstaller? Rpi Edward_ 4 1,725 Oct-18-2023, 11:09 PM
Last Post: Edward_
  How to calculated how many fail in each site(s) in csv files SamLiu 4 2,264 Sep-26-2022, 06:28 AM
Last Post: SamLiu
  Keeping up with IDEs and Virtual Environments... bytecrunch 7 6,600 Sep-05-2022, 08:04 PM
Last Post: snippsat
  Keeping a value the same despite changing the variable it was equated to TheTypicalDoge 2 2,267 Mar-13-2022, 10:50 PM
Last Post: Yoriz
  Imports that work with Python 3.8 fail with 3.9 and 3.10 4slam 1 3,432 Mar-11-2022, 01:50 PM
Last Post: snippsat
  Bot refuses to count logs. M1racle 0 1,723 Dec-13-2021, 06:42 PM
Last Post: M1racle
  [SOLVED] Why does regex fail cleaning line? Winfried 5 3,458 Aug-22-2021, 06:59 PM
Last Post: Winfried

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020