From 1a9bc089f2ed64f006a6702d08a3b8cad98bd9a9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 10 May 2017 16:05:11 +0530 Subject: [PATCH] Create log dir if it does not already exist --- src/calibre/srv/embedded.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/calibre/srv/embedded.py b/src/calibre/srv/embedded.py index e6a5c4e925..3f5ff38a78 100644 --- a/src/calibre/srv/embedded.py +++ b/src/calibre/srv/embedded.py @@ -3,6 +3,7 @@ # License: GPLv3 Copyright: 2017, Kovid Goyal from __future__ import absolute_import, division, print_function, unicode_literals +import errno import os from threading import Thread @@ -12,8 +13,8 @@ from calibre.srv.bonjour import BonJour from calibre.srv.handler import Handler from calibre.srv.http_response import create_http_handler from calibre.srv.loop import ServerLoop -from calibre.srv.utils import RotatingLog from calibre.srv.opts import server_config +from calibre.srv.utils import RotatingLog def log_paths(): @@ -30,6 +31,11 @@ class Server(object): def __init__(self, library_broker, notify_changes): opts = server_config() lp, lap = log_paths() + try: + os.makedirs(cache_dir()) + except EnvironmentError as err: + if err.errno != errno.EEXIST: + raise log_size = opts.max_log_size * 1024 * 1024 log = RotatingLog(lp, max_size=log_size) access_log = RotatingLog(lap, max_size=log_size)