Browse Source

Less verbose logs

Logs are cluttered by 'initial value...updated value' and it is really not
necessary to log that using a 'info' level.
The 'error' log level is excessive for the missing country.

If someone really wants to display the original and updated values, there still
is the possibility to use a ``--log-handler=openerp.addons.base_phone:DEBUG``.
pull/69/head
Guewen Baconnier 9 years ago
parent
commit
43cc243d0a
  1. 4
      base_phone/base_phone.py

4
base_phone/base_phone.py

@ -77,7 +77,7 @@ class PhoneCommon(models.AbstractModel):
if user.company_id.country_id:
countrycode = user.company_id.country_id.code
else:
_logger.error(
_logger.warning(
_("You should set a country on the company '%s' "
"to allow the reformat of phone numbers")
% user.company_id.name)
@ -94,7 +94,7 @@ class PhoneCommon(models.AbstractModel):
vals[field] = phonenumbers.format_number(
res_parse, phonenumbers.PhoneNumberFormat.E164)
if init_value != vals[field]:
_logger.info(
_logger.debug(
"%s initial value: '%s' updated value: '%s'"
% (field, init_value, vals[field]))
except Exception, e:

Loading…
Cancel
Save