From 8c2063aeeaa858d2b54ba6d614b621341a49af3d Mon Sep 17 00:00:00 2001 From: Luis Pater Date: Tue, 16 Sep 2025 20:03:48 +0800 Subject: [PATCH] Fix log key name from `gpt-5-codex` to `force-gpt-5-codex` for consistency --- internal/watcher/watcher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/watcher/watcher.go b/internal/watcher/watcher.go index 0564c573..ad7c18f3 100644 --- a/internal/watcher/watcher.go +++ b/internal/watcher/watcher.go @@ -246,7 +246,7 @@ func (w *Watcher) reloadConfig() bool { log.Debugf(" remote-management.allow-remote: %t -> %t", oldConfig.RemoteManagement.AllowRemote, newConfig.RemoteManagement.AllowRemote) } if oldConfig.ForceGPT5Codex != newConfig.ForceGPT5Codex { - log.Debugf(" gpt-5-codex: %t -> %t", oldConfig.ForceGPT5Codex, newConfig.ForceGPT5Codex) + log.Debugf(" force-gpt-5-codex: %t -> %t", oldConfig.ForceGPT5Codex, newConfig.ForceGPT5Codex) } }