issues
search
pocc
/
merlink
This program will connect desktop clients to Meraki firewalls
Apache License 2.0
3
stars
1
forks
source link
Log debug and error info to file
#45
Open
pocc
opened
6 years ago
pocc
commented
6 years ago
Problem
Currently print statements are used to log information to the console.
This is a GUI application so when deployed, there is no console.
Debugging is harder when the GUI application fails.
Solution
Use the python logging library
Info on how to implement this can be found
here
Problem
Solution