我正在尝试解决我们使用 Candy.core.attach(在服务器端预绑定之后)的 Candy.js(它使用 Strophe.js)的问题。
有一个问题我可以解决。我真的很想访问 strophe.js 日志(不仅仅是糖果从 strophe 捕获的数据包日志)。我知道 strophe 有低级别的日志记录,我怎样才能得到糖果来使用它?
我最终修改了我的 candy/strophe 的本地副本以启用我正在寻找的低级别日志记录,因为它看起来好像 Candy 没有提供启用 strophe 的低级别日志记录的方法。
在 init 中,将 debug 设置为 true
Candy.init($('BoshPath').val(), {
core: { debug: true, autojoin: [chatroom] },
view: {
resources: '/scripts/Candy/res/', crop: {
message: { nickname: 18, body: 250 },
roster: { nickname: 21 }
}
}
});
此外,在 Candy 中,找到“self.init = function (service, options)”行(在第 130 行附近)。如果您愿意,您可以自定义。
if (_options.debug) {
self.log = function (str) {
try { // prevent erroring
if (typeof window.console !== undefined && typeof window.console.log !== undefined) {
console.log(str);
}
} catch (e) { }
};
self.log('[Init] Debugging enabled');
}