3

ロガーの設定はこちら

APPLICATION_NAME = 'myapp'

# -- setting up global logger - #
logger = logging.getLogger(APPLICATION_NAME)
logger.setLevel(logging.DEBUG)

fh = logging.FileHandler(APPLICATION_NAME + '.log')

formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(messages)s')
fh.setFormatter(formatter)

logger.addHandler(fh)

これが私がそれを使用している方法です

logger.debug('added transaction: %s', str(transaction))

Transactionエンティティはどこにあり、どのように__repr__見えるか

def __repr__(self):
    return '<Transaction:%s:%s:%s:%s:%s:%s:%s>' % (
        self.uuid, self.name, self.created_on, self.amount,
        'debit' if self.debit else 'credit', self.user, self.category)

私のサーバーログは言う

Traceback (most recent call last):
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/logging/__init__.py", line 842, in emit
    msg = self.format(record)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/logging/__init__.py", line 719, in format
    return fmt.format(record)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/logging/__init__.py", line 467, in format
    s = self._fmt % record.__dict__
KeyError: 'messages'
Logged from file transaction_manager.py, line 30

私はここで何をしていないのですか?

4

1 に答える 1

4

では%(message)sなく%(messages)s

ドキュメントの基本的な例を参照してください。

于 2013-05-17T19:36:20.437 に答える