We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61bac0a commit 46cf8bdCopy full SHA for 46cf8bd
gptel-transient.el
@@ -806,9 +806,9 @@ Also format its value in the Transient menu."
806
(lambda (prompt _ _)
807
"Manage gptel's logging."
808
(let ((state (completing-read
809
- prompt '(off info debug) nil t)))
+ prompt '("off" "info" "debug") nil t)))
810
(message "Log level set to %s" state)
811
- (if (eq state 'off) nil (intern state)))))
+ (if (string= state "off") nil (intern state)))))
812
("L" "Inspect Log"
813
(lambda () (interactive)
814
(pop-to-buffer (get-buffer-create gptel--log-buffer-name)))
0 commit comments