From 4f14ae600cd987075a0a1e7bd4ce70c708c22b46 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Sun, 2 Oct 2016 23:12:56 +0200 Subject: [PATCH] logger.warning -> logger.debug --- base_phone/base_phone.py | 2 +- base_phone/report_sxw_format.py | 2 +- base_phone/wizard/number_not_found.py | 2 +- crm_phone/wizard/create_crm_phonecall.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/base_phone/base_phone.py b/base_phone/base_phone.py index 049fc78..f863651 100644 --- a/base_phone/base_phone.py +++ b/base_phone/base_phone.py @@ -27,7 +27,7 @@ import logging try: import phonenumbers except ImportError: - logger.warning('Cannot import phonenumbers') + logger.debug('Cannot import phonenumbers') _logger = logging.getLogger(__name__) diff --git a/base_phone/report_sxw_format.py b/base_phone/report_sxw_format.py index 665a19d..1349625 100644 --- a/base_phone/report_sxw_format.py +++ b/base_phone/report_sxw_format.py @@ -24,7 +24,7 @@ from openerp.report import report_sxw try: import phonenumbers except ImportError: - logger.warning('Cannot import phonenumbers') + logger.debug('Cannot import phonenumbers') class base_phone_installed(orm.AbstractModel): diff --git a/base_phone/wizard/number_not_found.py b/base_phone/wizard/number_not_found.py index f0ad970..a128154 100644 --- a/base_phone/wizard/number_not_found.py +++ b/base_phone/wizard/number_not_found.py @@ -25,7 +25,7 @@ import logging try: import phonenumbers except ImportError: - logger.warning('Cannot import phonenumbers') + logger.debug('Cannot import phonenumbers') _logger = logging.getLogger(__name__) diff --git a/crm_phone/wizard/create_crm_phonecall.py b/crm_phone/wizard/create_crm_phonecall.py index edb56d9..7100ef4 100644 --- a/crm_phone/wizard/create_crm_phonecall.py +++ b/crm_phone/wizard/create_crm_phonecall.py @@ -24,7 +24,7 @@ from openerp import models, api, _ try: import phonenumbers except ImportError: - logger.warning('Cannot import phonenumbers') + logger.debug('Cannot import phonenumbers') class wizard_create_crm_phonecall(models.TransientModel):