# Copyright 2015 Canonical, Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . import logging import os from subiquitycore.file_util import set_log_perms def setup_logger(dir, base="subiquity"): os.makedirs(dir, exist_ok=True) # Create the log directory in such a way that users in the group may # write to this directory in the installation environment. log_dir_group = "adm" if os.getenv("SNAP_CONFINEMENT", "classic") == "strict": # strictly confined snaps are peculiar in the way that we will not be # able to chown the location as any other group than 'root', this if # fine though as the snap is already run as the root user and # effectively the logs location will be more closed log_dir_group = "root" set_log_perms(dir, mode=0o770, group=log_dir_group) logger = logging.getLogger("") logger.setLevel(logging.DEBUG) r = {} for level in "info", "debug": nopid_file = os.path.join(dir, "{}-{}.log".format(base, level)) logfile = "{}.{}".format(nopid_file, os.getpid()) handler = logging.FileHandler(logfile) set_log_perms(logfile, group_write=False) # os.symlink cannot replace an existing file or symlink so create # it and then rename it over. tmplink = logfile + ".link" os.symlink(os.path.basename(logfile), tmplink) os.rename(tmplink, nopid_file) handler.setLevel(getattr(logging, level.upper())) handler.setFormatter( logging.Formatter( "%(asctime)s %(levelname)s %(name)s:%(lineno)d %(message)s" ) ) logger.addHandler(handler) r[level] = logfile return r