commit a688d9ab00fbb6ae9c99eac33e1a9a635d5f8298 parent 8490871108e4c002ce746a901e60bb0b11800ae2 Author: Dan Stillman <dstillman@zotero.org> Date: Wed, 13 Nov 2013 16:49:32 -0500 Debugging for relations purging error that won't get cut off Diffstat:
| M | chrome/content/zotero/xpcom/data/relations.js | | | 5 | ++++- |
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/data/relations.js b/chrome/content/zotero/xpcom/data/relations.js @@ -248,7 +248,10 @@ Zotero.Relations = new function () { } catch (e) { Zotero.debug(e); - Zotero.debug(Zotero.DB.query("SELECT * FROM relations")); + var rels = Zotero.DB.query("SELECT * FROM relations"); + for each (let rel in rels) { + Zotero.debug(rel); + } } } }