Exemple #1
0
def main():
    # logging.config.fileConfig(fname='../../conf/logging.conf', disable_existing_loggers=False)
    logging.basicConfig(level=logging.DEBUG, format='%(relativeCreated)6d %(threadName)s %(message)s')

    # Get the logger specified in the file
    logger = logging.getLogger(__name__)

    logger.debug('This is a debug message')

    game = BlackJack("blackjack1")
    game.printname()
    game.whatsTheGame()
    game.play()