From b847782079202456f3c4deb6907900d9d56c08c9 Mon Sep 17 00:00:00 2001 From: Paulo Gustavo Veiga Date: Mon, 24 Sep 2012 15:55:45 -0300 Subject: [PATCH] - Add additional debug info. RootTree seems to be out of sync. --- mindplot/src/main/javascript/layout/RootedTreeSet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindplot/src/main/javascript/layout/RootedTreeSet.js b/mindplot/src/main/javascript/layout/RootedTreeSet.js index f0b89741..e4ae17f5 100644 --- a/mindplot/src/main/javascript/layout/RootedTreeSet.js +++ b/mindplot/src/main/javascript/layout/RootedTreeSet.js @@ -84,7 +84,7 @@ mindplot.layout.RootedTreeSet = new Class({ } } validate = !$defined(validate) ? true : validate; - $assert(validate ? result : true, 'node could not be found id:' + id); + $assert(validate ? result : true, 'node could not be found id:' + id + "\n,RootedTreeSet" + this.dump()); return result; },