aboutsummaryrefslogtreecommitdiff
path: root/modules/quick-video-capture.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-11-16 22:10:58 -0600
committerCraig Jennings <c@cjennings.net>2025-11-16 22:10:58 -0600
commitb75bf8868878113a8e5a8ffde01aa52fe7127065 (patch)
treef6a01e6d61bec28bf63af5834a22beef838f765b /modules/quick-video-capture.el
parentf1801124b24ed3c973bac68b842004e9d42c2b5b (diff)
downloaddotemacs-b75bf8868878113a8e5a8ffde01aa52fe7127065.tar.gz
dotemacs-b75bf8868878113a8e5a8ffde01aa52fe7127065.zip
refactor: Use cj/log-silently for debug messages
Converted debug/informational messages to use cj/log-silently instead of message across multiple modules. These are automatic initialization or background task messages that don't need minibuffer display but should still be logged to *Messages* buffer. Changes: - org-agenda-config.el: Cache build/hit messages (4 messages) - org-refile-config.el: Cache build/hit + mode switching (5 messages) - org-export-config.el: reveal.js download message (1 message) - auth-config.el: oauth2-auto cache fix message (1 message) - quick-video-capture.el: initialization message (1 message) All modules now require system-lib for cj/log-silently function. Keeps UI clean while maintaining debuggability.
Diffstat (limited to 'modules/quick-video-capture.el')
-rw-r--r--modules/quick-video-capture.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/quick-video-capture.el b/modules/quick-video-capture.el
index 100cf04af..4e62309ea 100644
--- a/modules/quick-video-capture.el
+++ b/modules/quick-video-capture.el
@@ -20,6 +20,8 @@
;;; Code:
+(require 'system-lib)
+
;; Declare external functions to avoid warnings
(declare-function org-capture "org-capture" (&optional goto keys))
(declare-function org-protocol-check-filename-for-protocol "org-protocol" (fname restoffiles client))
@@ -99,7 +101,7 @@ It's designed to be idempotent - safe to call multiple times."
:jump-to-captured nil)))
(setq cj/video-download-initialized t)
- (message "Video download functionality initialized")))
+ (cj/log-silently "Video download functionality initialized")))
(defun cj/video-download-bookmarklet-instructions ()
"Display instructions for setting up the browser bookmarklet."