From a688d9ab00fbb6ae9c99eac33e1a9a635d5f8298 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 13 Nov 2013 16:49:32 -0500 Subject: [PATCH] Debugging for relations purging error that won't get cut off --- 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 index 413035e64..521e81a68 100644 --- 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); + } } } }