Function: semanticdb-find-log-activity
semanticdb-find-log-activity is a byte-compiled function defined in
db-find.el.gz.
Signature
(semanticdb-find-log-activity TABLE RESULT)
Documentation
Log that TABLE has been searched and RESULT was found.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-find.el.gz
(defun semanticdb-find-log-activity (table result)
"Log that TABLE has been searched and RESULT was found."
(when semanticdb-find-log-flag
(with-current-buffer semanticdb-find-log-buffer-name
(insert "Table: " (cl-prin1-to-string table)
" Result: " (int-to-string (length result)) " tags"
"\n")
)
(semanticdb-find-log-move-to-end)))