Fix log key name from gpt-5-codex to force-gpt-5-codex for consistency

This commit is contained in:
Luis Pater
2025-09-16 20:03:48 +08:00
parent ed6e7750e2
commit 8c2063aeea

View File

@@ -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)
}
}