Questions tagged [logging]
The logging tag has no summary.
36 questions
0 votes
2 answers
82 views
custom defconst
I'm trying to build a function that is a wrapper around defconst so that creation of a constant automatically gets logged in my log file. However, I can't figure out how to pass a string in a variable ...
1 vote
1 answer
250 views
Magit Log for Directory (git log -p -- /)
In git, the following shows patchlog for a directory git log -p -- hukarz/ How can I do this in Magit?;) I found some patch for it, but has this been included in Magit? Here's the patch I found ...
2 votes
2 answers
275 views
How to log backtrace to a file instead of popping it up and blocking following backtraces
With emacs if there is a backtrace buffer open, new backtrace is ignored. I find it is unconvenient when I am trying to find out which function/hook changes a variable. I use debug-watch as described ...
1 vote
1 answer
101 views
Why does let binding sometimes seem to fail to override a value?
In this example, the message isn't shown, but it's still logged (message-log-max is ignored). (let ((inhibit-message t) (message-log-max nil)) (hs-minor-mode)) The text Showing all blocks ... ...
0 votes
1 answer
34 views
Is there a command to start logging time on closest parent with previous logs?
Under a "topic" org entry I sometimes make daily sub-entries while working on the topic. Is there a command to start logging time on the top level topic instead of the daily entry?
3 votes
0 answers
178 views
Continuously redirect debugging information (e.g. *Messages*) to file
My Emacs configuration (Emacs 27, Doom-Emacs config with lots of user-specific tweaks, running on MacOS) sometimes hangs at seemingly random times, and the kill -SIGUSR2 <emacs PID> has no ...
5 votes
2 answers
517 views
Display keybindings typed in a buffer
On this video stream, the window on right displays the keybindings typed with its corresponding command bound. Is there any package that does that, or a way to achieve it?
6 votes
1 answer
773 views
Are there TRAMP mode log files? If so, how to access them?
Having here some troubles with TRAMP mode and already set (customize-set-variable 'tramp-verbose 6 "Enable remote command traces") in .emacs file. But main problem is that Emacs is stuck in TRAMP ...