0
Python - How to make a Packet logger from a server?
Hi, I was wondering how do I create a python Packet logger that would have the following functionality:
- Receive information from the game server, Example: i clicked on a button it would have to return the package that the server sent to represent this action
Which ones modules I would have to use it so I could do this program?
Obs: If you don’t understand what I meant by the post, comment on what you don’t understand so I can explain better!
With it logging library I can capture a log received by clicking on a button or an action ?
– Richard Santos
You can, if you set it up for that! Read the library documentation and you can do it! You will use a command like
logging.info("Botao clicado")
– Vinicius Mesel