Skip to content

Commit

Permalink
s/logger/logging
Browse files Browse the repository at this point in the history
  • Loading branch information
maltfield committed Oct 16, 2022
1 parent d5702c0 commit 744d8af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@
level = logging.DEBUG
)
msg = "==============================================================================="
print( msg ); logger.info( msg )
print( msg ); logging.info( msg )
msg = "INFO: Writing to log file '" +str(log_file_path)+ "'"
print( msg ); logger.info( msg )
print( msg ); logging.info( msg )

logging.debug( 'BUSKILL_VERSION|' +str(BUSKILL_VERSION)+ '|' )
logging.debug( 'os.environ|' +str(os.environ)+ '|' )
Expand Down

0 comments on commit 744d8af

Please sign in to comment.