Skip to content

Instantly share code, notes, and snippets.

@legumbre
Created March 1, 2014 08:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save legumbre/9286858 to your computer and use it in GitHub Desktop.
Save legumbre/9286858 to your computer and use it in GitHub Desktop.
magit verbose logging hack
;; 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