Created
March 1, 2014 08:11
-
-
Save legumbre/9286858 to your computer and use it in GitHub Desktop.
magit verbose logging hack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; magit verbose logging hack | |
(defadvice magit-cmd-output (around magit-log-git-output activate) | |
(let ((output-string ad-do-it)) | |
(with-current-buffer (get-buffer-create "*magit-debug-output*") | |
(insert output-string)) | |
output-string)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment