Skip to content

Commit

Permalink
Fix debug printouts
Browse files Browse the repository at this point in the history
  • Loading branch information
svaante committed Jan 1, 2024
1 parent 1e9587b commit ae0ac0d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dape-tests.el
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ failed."
(message "Current buffer: %s" (current-buffer))
(message "Current buffer contents:\n%s" (buffer-string))
(when-let ((debug-buffer (get-buffer "*dape-debug*")))
(message "dape-debug contents:\n%s" (buffer-string)))
(with-current-buffer debug-buffer
(message "dape-debug contents:\n%s" (buffer-string))))
(signal 'ert-test-failed (cdr err))))
(let ((ret ,pred))
(ignore ret)
Expand Down

0 comments on commit ae0ac0d

Please sign in to comment.