Print more information about invalid ids.
This commit is contained in:
parent
c94d8f4184
commit
4f752d81f0
1 changed files with 8 additions and 1 deletions
|
@ -364,7 +364,14 @@
|
||||||
(print " Invalid: "
|
(print " Invalid: "
|
||||||
(length iids)
|
(length iids)
|
||||||
" ("
|
" ("
|
||||||
(string-intersperse (map number->string iids) ", ")
|
(string-intersperse
|
||||||
|
(map (lambda (id)
|
||||||
|
(let ((mr (find-member-by-id MB id)))
|
||||||
|
(member-format
|
||||||
|
"~I - ~N"
|
||||||
|
mr)))
|
||||||
|
iids)
|
||||||
|
", ")
|
||||||
")"))))
|
")"))))
|
||||||
|
|
||||||
;; Performs self-tests of this module.
|
;; Performs self-tests of this module.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue