mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
Merge pull request #757 from Hestia-Homes/bug/categorisation-log-error
Categorisation bug fix: Correct syntax in log statements
This commit is contained in:
commit
16e849f84d
1 changed files with 3 additions and 3 deletions
|
|
@ -58,9 +58,9 @@ async def trigger_categorisation(
|
|||
|
||||
num_property_batches: int = math.ceil(len(property_ids) / properties_per_batch)
|
||||
|
||||
logger.info("total_plans_to_update", total_plans_to_update)
|
||||
logger.info("properties_per_batch", properties_per_batch)
|
||||
logger.info("num_property_buckets", num_property_batches)
|
||||
logger.info("total_plans_to_update: %s", total_plans_to_update)
|
||||
logger.info("properties_per_batch: %s", properties_per_batch)
|
||||
logger.info("num_property_batchess: %s", num_property_batches)
|
||||
|
||||
# Create task
|
||||
task_id, _ = TasksInterface.create_task(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue