Mercurial > libervia-backend
comparison src/bridge/bridge.py @ 993:301b342c697a
core: use of the new core.log module:
/!\ this is a massive refactoring and was largely automated, it probably did bring some bugs /!\
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 19 Apr 2014 19:19:19 +0200 |
parents | 1597fb8b9108 |
children | 069ad98b360d |
comparison
equal
deleted
inserted
replaced
992:f51a1895275c | 993:301b342c697a |
---|---|
15 # GNU Affero General Public License for more details. | 15 # GNU Affero General Public License for more details. |
16 | 16 |
17 # You should have received a copy of the GNU Affero General Public License | 17 # You should have received a copy of the GNU Affero General Public License |
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. | 18 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 | 19 |
20 from logging import debug, info, error | 20 from sat.core.log import getLogger |
21 log = getLogger(__name__) | |
21 | 22 |
22 | 23 |
23 class Bridge(object): | 24 class Bridge(object): |
24 def __init__(self): | 25 def __init__(self): |
25 info("Bridge initialization") | 26 log.info("Bridge initialization") |