简体   繁体   English

Pyhton 日志记录问题:output 中缺少一些日志

[英]Pyhton logging issue: some logs are missing from the output

I am trying to understand python logging.我试图了解 python 日志记录。 I created a project with the following structure.我创建了一个具有以下结构的项目。 . . ├── config │ └── configfile.conf ├── mytest │ ├── pyvmomi.py │ └── s_lib.py ├── VM_dep.py └── vm_setup.py ├── config │ └── configfile.conf ├── mytest │ ├── pyvmomi.py │ └── s_lib.py ├── VM_dep.py └── vm_setup.py

VM_dep.py is the the main file: VM_dep.py是主文件:

#! /usr/bin/env python3

import logging
from mytest import pyvmomi
from vm_setup import SetupVM


LOGGER = logging.getLogger(__name__)

TEMP_FOLDER = "."

def main():
    LOGGER.info("Running as user: %s", "John Doe")

    
    pyvmomi.create_vm()
    LOGGER.info("VM deployed successfully, IP address: %s", "10.234.103.222")

    vm_to_setup = SetupVM()
    vm_to_setup.configure_vm()


if __name__ == "__main__":
        main()

Pyvmomi.py file: Pyvmomi.py文件:

from pathlib import Path
import logging
import logging.config

basefolder = Path(__file__).parents[1]
configfile = (basefolder / "config/configfile.conf").resolve()
logging.config.fileConfig(configfile)

# create logger
logger = logging.getLogger('pyvmomi_lib')


def create_vm():
        logger.info("Pyvmomi")
    

vm_setup.py file vm_setup.py 文件

#! /usr/bin/env python3

import logging
# from mytest import s_lib  <-- this line is intentionally commented


LOGGER = logging.getLogger(__name__)


class VMSetupException(Exception):
    """Create custom exception type."""


class SetupVM:
    def configure_vm(self):
        LOGGER.info(
                "===================== Setup VM =================================="
            )

s_lib.py s_lib.py

from pathlib import Path
import logging.config


basefolder = Path(__file__).parents[1]
configfile = (basefolder / "config/configfile.conf").resolve()
# print(configfile)
logging.config.fileConfig(configfile)

# create logger
logger = logging.getLogger("opcc_k8s_lib")

logger.info("Hiya LOG LIBRARY")

I noticed a behavior which I am unable to understand.我注意到一种我无法理解的行为。 In the vm_setup.py file i have one line commented:vm_setup.py文件中,我有一行注释:

# from mytest import s_lib

As long as this line is commented, the output is as follows:只要注释掉这一行,output如下:

❯ python3 VM_dep.py
12-26-2021 05:29:31 PM __main__ VM_dep INFO Running as user: John Doe 
12-26-2021 05:29:31 PM pyvmomi_lib pyvmomi INFO Pyvmomi
12-26-2021 05:29:31 PM __main__ VM_dep INFO VM deployed successfully, IP address: 10.234.103.222 
12-26-2021 05:29:31 PM vm_setup vm_setup INFO ===================== Setup VM
    ==================================

But when I uncomment the above line, the output changes to:但是当我取消注释上述行时, output 变为:

❯ python3 VM_dep.py
12-26-2021 05:33:08 PM opcc_k8s_lib s_lib INFO Hiya LOG LIBRARY
12-26-2021 05:33:08 PM __main__ VM_dep INFO Running as user: John Doe
12-26-2021 05:33:08 PM __main__ VM_dep INFO VM deployed successfully, IP address: 10.234.103.222
12-26-2021 05:33:08 PM vm_setup vm_setup INFO ===================== Setup VM ==================================

I am not getting 12-26-2021 05:29:31 PM pyvmomi_lib pyvmomi INFO Pyvmomi this in the output我没有得到12-26-2021 05:29:31 PM pyvmomi_lib pyvmomi INFO Pyvmomi这个在 output

When we import s_lib in the vm_setup.py file, it runs this logging.config.fileConfig(configfile) again(fist time this is called while import ing pyvmomi lib. I believe loading the fileConfig again is causing this issue but I cant understand why. Any help would be appreciated.当我们在vm_setup.py文件中导入s_lib时,它会再次运行此logging.config.fileConfig(configfile) (第一次在import pyvmomi lib 时调用它。我相信再次加载 fileConfig 会导致此问题,但我不明白为什么。 任何帮助,将不胜感激。

Here is the config file:这是配置文件:

[loggers]
keys=root,simpleConsoleExample

[handlers]
keys=consoleHandler

[formatters]
keys=simpleConsoleFormatter

[logger_root]
level=INFO
handlers=consoleHandler

[logger_simpleConsoleExample]
level=INFO
handlers=consoleHandler
qualname=simpleConsoleExample
propagate=0

[handler_consoleHandler]
class=StreamHandler
level=INFO
formatter=simpleConsoleFormatter
args=(sys.stdout,)

[formatter_simpleConsoleFormatter]
format=%(asctime)s %(name)s %(module)s %(levelname)s %(message)s
datefmt=%m-%d-%Y %I:%M:%S %p

I fix your issue by adding,disable_existing_loggers=False) in s_lib.py.我通过在 s_lib.py 中添加,disable_existing_loggers=False) 来解决您的问题。 The default value is True.默认值是true。 Here's a link to Python Doc这是Python 文档的链接


from pathlib import Path
import logging.config


basefolder = Path(__file__).parents[1]
configfile = (basefolder / "config/configfile.conf").resolve()
# print(configfile)
logging.config.fileConfig(configfile,disable_existing_loggers=False)

# create logger
logger = logging.getLogger("opcc_k8s_lib")

logger.info("Hiya LOG LIBRARY")

The output that i got on my laptop我在笔记本电脑上安装的 output

nabs@LAPTOP:~/stackoverflow$ python3 VM_dep.py
12-26-2021 02:28:59 PM opcc_k8s_lib s_lib INFO Hiya LOG LIBRARY
12-26-2021 02:28:59 PM __main__ VM_dep INFO Running as user: John Doe
12-26-2021 02:28:59 PM pyvmomi_lib Pyvmomi INFO Pyvmomi
12-26-2021 02:28:59 PM __main__ VM_dep INFO VM deployed successfully, IP address: 10.234.103.222
12-26-2021 02:28:59 PM vm_setup vm_setup INFO ===================== Setup VM ==================================

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM