Browse Source
[IMP] pos_pricelist: Debug instead of warning
pull/275/head
Pedro M. Baeza
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
pos_pricelist/__init__.py
|
@ -7,4 +7,4 @@ try: |
|
|
except ImportError: # pragma: no-cover |
|
|
except ImportError: # pragma: no-cover |
|
|
import logging |
|
|
import logging |
|
|
_logger = logging.getLogger(__name__) |
|
|
_logger = logging.getLogger(__name__) |
|
|
_logger.warn("Missing dependency", exc_info=True) |
|
|
|
|
|
|
|
|
_logger.debug("Missing dependency", exc_info=True) |