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); + } } } }