Logging concept #33
Labels
No Label
analysis
bug
documentation
enhancement
feature
incompatibility
management
Priority:0
Priority:1
Priority:2
Priority:3
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: marcel/pylot#33
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Logging is currently done via
print
andverbosity
flag variables. This is unnecessary code overhead since there are built in logging solutions available in python. Suggestion would be to use thelogging
module. This also provides the establishment of different handlers to the same logger. Thus it is possible to write the log to a file and to the LogWidget or onto the console with full control over the verbosity.TODO:
pylot
debug
stderr
error
stdout
warning
verbosity
andprint
statements