mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-28 11:24:11 +08:00
Log all box attributes to help track down bug
This commit is contained in:
parent
7056a4b8f4
commit
ffc2593c4e
1 changed files with 6 additions and 0 deletions
|
@ -57,6 +57,12 @@ class FetchFolderList {
|
|||
continue;
|
||||
}
|
||||
|
||||
this._logger.info({
|
||||
box_name: boxName,
|
||||
attributes: JSON.stringify(box.attribs),
|
||||
}, `FetchFolderList: Box Information`)
|
||||
|
||||
|
||||
if (box.children && box.attribs.includes('\\HasChildren')) {
|
||||
Object.keys(box.children).forEach((subname) => {
|
||||
stack.push([`${boxName}${box.delimiter}${subname}`, box.children[subname]]);
|
||||
|
|
Loading…
Reference in a new issue