Gusto / it-cpe-opensource

Tools used by the CPE team at Gusto to manage our endpoints and software deployment systems.
Other
59 stars 29 forks source link

Fixed typo that created a second logging instance #64

Closed MScottBlake closed 2 years ago

MScottBlake commented 2 years ago

This change fixes a typo that calls logging.debug() directly instead of calling the defined logger.debug() method. The typo caused a second, non-configured instance of logging to be created and all subsequent messages to be duplicated. The result of this change cleans up the script output and all logging is directed to the defined logger.

williamtheaker commented 2 years ago

Thanks!