From fe07d0f7117ebc3ef2e609ce2137eeafabc3d971 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 24 Feb 2026 22:31:47 +0000 Subject: [PATCH] Modernize logging formatting and fix incorrect placeholder Fixed an issue in `cfgcaddy/utils.py` where a logging call was using `{}` as a placeholder instead of the standard `%s` when passing arguments separately to the logger. This would cause a `TypeError`. Additionally, modernized all other logging calls in the codebase to use `%s` placeholders and lazy interpolation instead of `.format()`, improving overall code health and maintainability. Co-authored-by: tstapler <3860386+tstapler@users.noreply.github.com>