####################################################################################################
#
# Musica - A Music Theory Package for Python
# Copyright (C) 2014 Fabrice Salvaire
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
####################################################################################################
####################################################################################################
import yaml
import logging
import logging.config
import os
####################################################################################################
import Musica.Config.ConfigInstall as ConfigInstall
####################################################################################################
[docs]def setup_logging(application_name='Musica',
config_file=ConfigInstall.Logging.default_config_file):
logging_config_file_name = ConfigInstall.Logging.find(config_file)
logging_config = yaml.load(open(logging_config_file_name, 'r'))
if ConfigInstall.OS.on_linux:
# Fixme: \033 is not interpreted in YAML
formatter_config = logging_config['formatters']['ansi']['format']
logging_config['formatters']['ansi']['format'] = formatter_config.replace('<ESC>', '\033')
if ConfigInstall.OS.on_windows:
formatter = 'simple'
else:
formatter = 'ansi'
logging_config['handlers']['console']['formatter'] = formatter
logging.config.dictConfig(logging_config)
logger = logging.getLogger(application_name)
if 'MusicaLogLevel' in os.environ:
numeric_level = getattr(logging, os.environ['MusicaLogLevel'], None)
logger.setLevel(numeric_level)
return logger