1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-24 15:49:39 +02:00

Fix rule title reference

This commit is contained in:
Zach Gollwitzer 2025-05-07 14:10:56 -04:00
parent a67f36bf64
commit 71be2a04ad
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ class Rule::ActionExecutor::AutoCategorize < Rule::ActionExecutor
enrichable_transactions = transaction_scope.enrichable(:category_id)
if enrichable_transactions.empty?
Rails.logger.info("No transactions to auto-categorize for #{rule.title} #{rule.id}")
Rails.logger.info("No transactions to auto-categorize for #{rule.id}")
return
end

View file

@ -11,7 +11,7 @@ class Rule::ActionExecutor::AutoDetectMerchants < Rule::ActionExecutor
enrichable_transactions = transaction_scope.enrichable(:merchant_id)
if enrichable_transactions.empty?
Rails.logger.info("No transactions to auto-detect merchants for #{rule.title} #{rule.id}")
Rails.logger.info("No transactions to auto-detect merchants for #{rule.id}")
return
end