Skip to content

Commit

Permalink
[TEST] add logging
Browse files Browse the repository at this point in the history
  • Loading branch information
CRogos committed Nov 28, 2024
1 parent b159dba commit a40ba90
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion partner_firstname/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{
"name": "Partner first name and last name",
"summary": "Split first name and last name for non company partners",
"version": "18.0.1.1.0",
"version": "18.0.1.2.0",
"author": "Camptocamp, "
"Grupo ESOC Ingeniería de Servicios, "
"Tecnativa, "
Expand Down
5 changes: 5 additions & 0 deletions partner_firstname/migrations/18.0.1.2.0/pre-migration.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import logging

from odoo.upgrade import util

_logger = logging.getLogger(__name__)


def migrate(cr, version):
_logger.info("Installing module %s", "partner_type_base")
util.force_install_module(cr, "partner_type_base")

0 comments on commit a40ba90

Please sign in to comment.