I am using Pathos for parallelism: https://pypi.org/project/pathos/ All good except when instantiating the Pool I get some annoying error messages.
from pathos.multiprocessing import ProcessingPool as Pool
p = Pool().map #<--This line spits out four lines to console:
"ERROR:root:<class 'RuntimeError'>"
#(I have four CPUs, so I guess one each)
Seems everything is working fine. These four errors are just little annoying but it's not interfering with anything else.
Anyway I can silent these error messages from printing to console?