Skip to content

Commit

Permalink
mu4e-server: demote 'Cannot handle command ...' to message
Browse files Browse the repository at this point in the history
It was a warning, but seems some users got it a lot (which is a sign
they're spending too much time indexing!); so let's demote it to a mere
message.

Issue #2778.
  • Loading branch information
djcb committed Nov 3, 2024
1 parent bbf3482 commit 33c09c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mu4e/mu4e-server.el
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ You cannot run the repl when mu4e is running (or vice-versa)."
(mu4e--server-start))
;; in single-threaded mode, mu can't accept our command right now.
(when (and (mu4e--server-xapian-single-threaded-p) mu4e--server-indexing)
(mu4e-warn "Cannot handle command while indexing, please retry later."))
(mu4e-message "Cannot handle command while indexing, please retry later."))
(let* ((print-length nil) (print-level nil)
(cmd (format "%S" form)))
(mu4e-log 'to-server "%s" cmd)
Expand Down

0 comments on commit 33c09c5

Please sign in to comment.