Output more debug prints

This commit is contained in:
YUKI Hiroshi 2015-10-26 18:50:38 +09:00
parent 42c0bfa407
commit ad15b22b39

View File

@ -3045,6 +3045,15 @@ TreeStyleTabBrowser.prototype = inherit(TreeStyleTabWindow.prototype, {
var pareintIndexInTree = hasStructure ? this.treeStructure.shift() : 0 ; var pareintIndexInTree = hasStructure ? this.treeStructure.shift() : 0 ;
var lastRelatedTab = b._lastRelatedTab; var lastRelatedTab = b._lastRelatedTab;
if (utils.isDebugging('browser')) {
dump('TSTBrowser_onTabOpen\n ' + [
'readiedToAttachNewTab: '+this.readiedToAttachNewTab,
'parentTab: '+this.parentTab + ' (' + this.getTabById(this.parentTab) + ')',
'insertBefore: '+this.insertBefore,
'treeStructure: '+this.treeStructure
].join('\n ') + '\n');
}
if (this.readiedToAttachNewTab) { if (this.readiedToAttachNewTab) {
if (pareintIndexInTree < 0) { // there is no parent, so this is a new parent! if (pareintIndexInTree < 0) { // there is no parent, so this is a new parent!
this.parentTab = tab.getAttribute(this.kID); this.parentTab = tab.getAttribute(this.kID);
@ -3542,6 +3551,11 @@ TreeStyleTabBrowser.prototype = inherit(TreeStyleTabWindow.prototype, {
delta = Math.abs(pos - oldPos); delta = Math.abs(pos - oldPos);
} }
if (utils.isDebugging('browser')) {
dump('attachTabFromPosition '+aTab._tPos+' / '+aOldPosition+'\n');
dump((new Error()).stack.replace(/^/gm, ' ')+'\n');
}
var prevTab = this.getPreviousTab(aTab); var prevTab = this.getPreviousTab(aTab);
var nextTab = this.getNextTab(aTab); var nextTab = this.getNextTab(aTab);