Skip to content
This repository has been archived by the owner on Mar 22, 2023. It is now read-only.

Commit

Permalink
includes timestamps in kitchen logging (#546)
Browse files Browse the repository at this point in the history
  • Loading branch information
shamsimam authored and DaoWen committed Jan 7, 2019
1 parent 54f5305 commit 95eeaf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kitchen/bin/kitchen
Expand Up @@ -929,7 +929,7 @@ if __name__ == '__main__':
else: else:
logging_config = {'stream': getattr(sys, args.log_output)} logging_config = {'stream': getattr(sys, args.log_output)}


logging.basicConfig(level=logging.DEBUG, **logging_config) logging.basicConfig(format='%(asctime)s %(levelname)s %(message)s', level=logging.DEBUG, **logging_config)
kitchen_logger = logging.getLogger('kitchen') kitchen_logger = logging.getLogger('kitchen')
kitchen_logger.setLevel(logging.DEBUG) kitchen_logger.setLevel(logging.DEBUG)


Expand Down

0 comments on commit 95eeaf1

Please sign in to comment.