我正在尝试在虚拟机(运行 Ubuntu-16.04)上为我的烧瓶项目实现日志记录。我有以下用于创建新目录的功能。
def mkdir_p(path):
try:
pathlib.Path(path).mkdir(parents=True, exist_ok=True)
except FileExistsError as exc:
raise
以下文件处理程序继承自 RotatingFileHandler。
class MyRotatingFileHandler(RotatingFileHandler):
def __init__(self, filename, mode='a', maxBytes=0, backupCount=0, encoding=None, delay=0):
mkdir_p(os.path.dirname(filename))
RotatingFileHandler.__init__(self, filename, mode, maxBytes, backupCount, encoding, delay)
在运行时在我的本地计算机上注册新记录器时,这一切都很好,但是当我尝试在 azure 实例上运行相同的代码时,我传入的路径和文件('log/error.log')是没有创建。
我已确保运行代码的用户在目录上设置了写权限。我真的想不出任何其他原因可能会发生这种情况。