1

Python 開発イベントをログに記録するために「logentries」アカウントをセットアップしようとしています。しかし、ドキュメントで利用可能な最も単純なテストでも、次のエラーが発生します。何かご意見は?

Python 2.7.10 (default, May 23 2015, 09:40:32) [MSC v.1500 32 bit (Intel)] on wi
n32
Type "help", "copyright", "credits" or "license" for more information.
>>> from logentries import LogentriesHandler
>>> import logging
>>> log = logging.getLogger('logentries')
>>> log.setLevel(logging.INFO)
>>> log.addHandler(LogentriesHandler('xxxx-xxxx-xxxx-xxxx-xxxx'))
>>> log.info('teste')
LE: Starting Logentries Asynchronous Socket Appender
>>> Exception in thread Thread-1:
Traceback (most recent call last):
  File "C:\Python27\lib\threading.py", line 810, in __bootstrap_inner
    self.run()
  File "C:\Python27\lib\site-packages\logentries\utils.py", line 96, in run
    multiline = le_helpers.create_unicode(data).replace(
  File "C:\Python27\lib\site-packages\logentries\helpers.py", line 31, in create
_unicode
    return unicode(ch, 'utf-8')
UnicodeDecodeError: 'utf8' codec can't decode byte 0xe1 in position 59: invalid
continuation byte
4

1 に答える 1

1

ニキータのコメントのおかげで、問題を見つけることができました。

logentries の Helpers.py lib は、タイムスタンプ ラベルに「á」などの特殊文字があるラテン語 OS 用に準備されていません。

交換する

unicode(ch,'utf8')

unicode(ch,'utf8','replace')

トリックをしました。

于 2015-12-07T21:30:31.863 に答える