1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #
- # Metrix++, Copyright 2009-2013, Metrix++ Project
- # Link: http://swi.sourceforge.net
- #
- # This file is a part of Metrix++ Tool.
- #
- # Metrix++ 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, version 3 of the License.
- #
- # Metrix++ 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 Metrix++. If not, see <http://www.gnu.org/licenses/>.
- #
- import core.api
- import logging
- class Plugin(core.api.Plugin, core.api.IConfigurable):
-
- def declare_configuration(self, parser):
- parser.add_option("--general.log-level", default=r'INFO', choices=['DEBUG','INFO','WARNING','ERROR'],
- help="Defines log level. Possible values are 'DEBUG','INFO','WARNING' or 'ERROR' [default: %default]")
-
- def configure(self, options):
- if options.__dict__['general.log_level'] == 'ERROR':
- log_level = logging.ERROR
- elif options.__dict__['general.log_level'] == 'WARNING':
- log_level = logging.WARNING
- elif options.__dict__['general.log_level'] == 'INFO':
- log_level = logging.INFO
- elif options.__dict__['general.log_level'] == 'DEBUG':
- log_level = logging.DEBUG
- else:
- raise AssertionError("Unhandled choice of log level")
-
- logging.getLogger().setLevel(log_level)
- logging.warn("Logging enabled with " + options.__dict__['general.log_level'] + " level")
- def set_default_format():
- logging.basicConfig(format="[LOG]: %(levelname)s:\t%(message)s", level=logging.WARN)
|