V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
chenqh
V2EX  ›  Python

Python logging FileHandler 写 emoji 报错

  •  
  •   chenqh · 2021-02-28 22:38:49 +08:00 · 2165 次点击
    这是一个创建于 1145 天前的主题,其中的信息可能已经有所发展或是发生改变。

    代码

    import logging
    from logging import config
    
    LOGGING_CONFIG = {
            "version": 1,
            "formatters": {
                "default": {
                    'format': '%(asctime)19.19s %(levelname)1.1s %(message)s',
                },
                "file": {
                    'format': '%(asctime)19.19s %(filename)s %(lineno)s %(levelname)1.1s %(message)s',
                },
                "plain": {
                    "format": "%(message)s",
                },
            },
            "handlers": {
                "console": {
                    "class": "logging.StreamHandler",
                    "level": "INFO",
                    "formatter": "default",
                },
    
                "file": {
                    "class": "logging.FileHandler",
                    "level": 20,
                    "filename": "./log.txt",
                    "formatter": "default",
                },
                "rotate_file": {
                    "class": "logging.handlers.RotatingFileHandler",
                    "level": 20,
                    "filename": "./log.txt",
                    "formatter": "default",
                    "maxBytes": 52428800,
                    "backupCount": 7,
                }
            },
            "loggers": {
    
                "tmp": {
                    "handlers": ["console", "rotate_file"],
                    "level": "INFO",
                    "propagate": False,
                },
    
            },
            "disable_existing_loggers": True,
        }
    
    config.dictConfig(LOGGING_CONFIG)
    logger = logging.getLogger("tmp")
    
    
    logger.info("吃\ud83d\udc3a")
    
    
    

    报错信息

    2021-02-28 22:35:55 I 吃\ud83d\udc3a
    --- Logging error ---
    Traceback (most recent call last):
      File "/home/vagrant/.pyenv/versions/3.6.9/lib/python3.6/logging/__init__.py", line 996, in emit
        stream.write(msg)
    UnicodeEncodeError: 'utf-8' codec can't encode characters in position 23-24: surrogates not allowed
    Call stack:
      File "/home/vagrant/code/xxx/tmp.py", line 55, in <module>
        logger.info("吃\ud83d\udc3a")
    Message: '吃\ud83d\udc3a'
    Arguments: ()
    

    这种问题怎么 fix 呀?

    8 条回复    2021-03-01 16:02:58 +08:00
    Sunyanzi
        1
    Sunyanzi  
       2021-02-28 23:39:54 +08:00   ❤️ 1
    这难道不是只要 encode 一下就好了吗 ... 最后一行改成下面样子 ...

    logger.info("吃\ud83d\udc3a".encode('unicode-escape'))
    lxy42
        2
    lxy42  
       2021-02-28 23:48:14 +08:00   ❤️ 1
    ```
    In [38]: print('\U0001f43a')
    🐺
    In [39]: hex(ord('🐺'))
    Out[39]: '0x1f43a'
    ```
    chenqh
        3
    chenqh  
    OP
       2021-03-01 00:06:31 +08:00
    @Sunyanzi 虽然你这个样子不会报错,但是日志变成这个样子了

    ```
    2021-03-01 00:05:07 I b'\\u5403\\ud83d\\udc3a'
    ```

    日志都不能肉眼识别了,那么日志的意义就没有了呀
    chenqh
        4
    chenqh  
    OP
       2021-03-01 00:08:35 +08:00
    @lxy42 只是 streamHandler 也不会报错的,关键是 FileHandler 导致报错了
    Sunyanzi
        5
    Sunyanzi  
       2021-03-01 00:12:28 +08:00   ❤️ 1
    @chenqh 只是需要保中文的肉眼识别 ..? 那换个写法用 rper 就好 ...

    参数改成 ("%r" % "吃\ud83d\udc3a") ...
    Sylv
        6
    Sylv  
       2021-03-01 04:20:31 +08:00 via iPhone   ❤️ 1
    \ud83d\udc3a 是 🐺 的 UTF-16 编码,然后再用默认的 UTF-8 编码 encode 肯定就出错了。
    Sylv
        7
    Sylv  
       2021-03-01 04:20:47 +08:00 via iPhone
    0x0208v0
        8
    0x0208v0  
       2021-03-01 16:02:58 +08:00
    @Sylv
    @Sunyanzi 好牛啊,我学到了
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2793 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 26ms · UTC 14:00 · PVG 22:00 · LAX 07:00 · JFK 10:00
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.