Skip to content

Commit

Permalink
logger.warning -> logger.debug
Browse files Browse the repository at this point in the history
  • Loading branch information
alexis-via committed Oct 19, 2016
1 parent 0a36c8c commit d0e4c3a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Expand Up @@ -15,7 +15,7 @@
from invoice2data.template import read_templates
from invoice2data.main import logger as loggeri2data
except ImportError:
logger.warning('Cannot import invoice2data')
logger.debug('Cannot import invoice2data')


class AccountInvoiceImport(models.TransientModel):
Expand Down
2 changes: 1 addition & 1 deletion account_invoice_zugferd/models/account_invoice.py
Expand Up @@ -18,7 +18,7 @@
from PyPDF2.generic import DictionaryObject, DecodedStreamObject,\
NameObject, createStringObject, ArrayObject
except ImportError:
logger.warning('Cannot import PyPDF2')
logger.debug('Cannot import PyPDF2')


ZUGFERD_LEVEL = 'comfort'
Expand Down
Expand Up @@ -15,7 +15,7 @@
try:
import PyPDF2
except ImportError:
logger.warning('Cannot import PyPDF2')
logger.debug('Cannot import PyPDF2')


class BusinessDocumentImport(models.AbstractModel):
Expand Down
Expand Up @@ -8,7 +8,7 @@
try:
import phonenumbers
except ImportError:
logger.warning('Cannot import phonenumbers')
logger.debug('Cannot import phonenumbers')


class BusinessDocumentImport(models.AbstractModel):
Expand Down
2 changes: 1 addition & 1 deletion base_ubl/models/ubl.py
Expand Up @@ -15,7 +15,7 @@
try:
import PyPDF2
except ImportError:
logger.warning('Cannot import PyPDF2')
logger.debug('Cannot import PyPDF2')


class BaseUbl(models.AbstractModel):
Expand Down
2 changes: 1 addition & 1 deletion sale_order_import_csv/wizard/sale_order_import.py
Expand Up @@ -11,7 +11,7 @@
try:
import unicodecsv
except ImportError:
logger.warning('Cannot import unicodecsv')
logger.debug('Cannot import unicodecsv')


class SaleOrderImport(models.TransientModel):
Expand Down

0 comments on commit d0e4c3a

Please sign in to comment.