X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=src%2Fnepi%2Futil%2Flogger.py;h=9e6c2727f205b2130f8d07527bd4b5e0dbea1c98;hb=62a8f5c90afe9033f532206c811cff8ea76b2c09;hp=20a4125422187b1d8b92b4dd48c53579e46a48d3;hpb=414330e13af67326e28650bfcac99459799f8a62;p=nepi.git diff --git a/src/nepi/util/logger.py b/src/nepi/util/logger.py index 20a41254..9e6c2727 100644 --- a/src/nepi/util/logger.py +++ b/src/nepi/util/logger.py @@ -1,25 +1,24 @@ -""" - NEPI, a framework to manage network experiments - Copyright (C) 2013 INRIA - - 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 . - -""" +# +# NEPI, a framework to manage network experiments +# Copyright (C) 2013 INRIA +# +# 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 . +# +# Author: Alina Quereilhac import logging - class Logger(object): def __init__(self, logger_component): self._logger = logging.getLogger(logger_component)