multiprocessing.get_logger()
Returns the logger used by multiprocessing
. If necessary, a new one will be created.
When first created the logger has level logging.NOTSET
and no default handler. Messages sent to this logger will not by default propagate to the root logger.
Note that on Windows child processes will only inherit the level of the parent process’s logger – any other customization of the logger will not be inherited.
Please login to continue.