From 2c3548d1ac2768fb5e46c6f3d5a0927f3dd3d669 Mon Sep 17 00:00:00 2001 From: Rick Barrette Date: Fri, 6 Feb 2026 18:55:49 -0500 Subject: [PATCH] Added logging --- lib/redmine_qbo/patches/issue_patch.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/redmine_qbo/patches/issue_patch.rb b/lib/redmine_qbo/patches/issue_patch.rb index 6ec9bc4..f81bea8 100644 --- a/lib/redmine_qbo/patches/issue_patch.rb +++ b/lib/redmine_qbo/patches/issue_patch.rb @@ -112,6 +112,7 @@ module RedmineQbo # Titleize the subject before save , but keep words containing numbers mixed with letters capitalized def titlize_subject + logger.debug "QBO: Titlizing subject for issue ##{self.id}" self.subject = self.subject.split(/\s+/).map do |word| # If word is NOT purely alphanumeric (contains special chars), # or is all upper/lower, we can handle it.