Chris-Dobbins / listdupes

A duplicate file checking utility for the command-line, written in Python with no external dependencies.
BSD 2-Clause "Simplified" License
2 stars 0 forks source link

Consider implementing logging. #17

Open Chris-Dobbins opened 2 years ago

Chris-Dobbins commented 2 years ago

The ad hoc debug logging in v6 Alpha 5 and earlier was difficult to maintain and expand. Part of the need for debugging has been addressed by the unread files error log feature, as the project expands a dedicated logging feature using the logging module may be called for.

Research on the speed impacts of logging is necessary, being as fast as possible for a Python stdlib is a firm goal.