query params filter working with tags in Product
This commit is contained in:
@@ -61,7 +61,6 @@ class Command(BaseCommand):
|
||||
logging.info(f"Country instance created for: {name}")
|
||||
except Exception as e:
|
||||
logging.error(f"[{name}][{type(e)}] {str(e)}")
|
||||
# import ipdb; ipdb.set_trace()
|
||||
|
||||
# region instances
|
||||
logging.info("loading region instances")
|
||||
@@ -83,7 +82,6 @@ class Command(BaseCommand):
|
||||
logging.info(f"Region instance created for: {name}")
|
||||
except Exception as e:
|
||||
logging.error(f"[{name}][{type(e)}] {str(e)}")
|
||||
# import ipdb; ipdb.set_trace()
|
||||
|
||||
# province instances
|
||||
logging.info("loading province instances")
|
||||
@@ -106,7 +104,6 @@ class Command(BaseCommand):
|
||||
logging.info(f"Province instance created for: {name}")
|
||||
except Exception as e:
|
||||
logging.error(f"[{name}][{type(e)}] {str(e)}")
|
||||
import ipdb; ipdb.set_trace()
|
||||
|
||||
# city instances
|
||||
logging.info("loading city instances")
|
||||
@@ -129,7 +126,6 @@ class Command(BaseCommand):
|
||||
logging.debug(f"City instance created for: {name}")
|
||||
except Exception as e:
|
||||
logging.error(f"[{type(e)}] {str(e)}")
|
||||
# import ipdb; ipdb.set_trace()
|
||||
|
||||
logging.info(f"Country instances created: {country_counter}")
|
||||
logging.info(f"Region instances created: {region_counter}")
|
||||
|
||||
Reference in New Issue
Block a user