Google Chrome 拡張機能の background_script に次のコードがあります。
var source = new EventSource("http://www.janywer.freetzi.com/events/groupshout.php");
source.addEventListener('message', function (e) {
console.log('message', e.data);
}, false);
source.addEventListener('open', function (e) {
console.log('open');
}, false);
source.addEventListener('error', function (e) {
console.log('error')
}, false);
私の問題は次のとおりです。拡張機能をロードするたびに「エラー」と表示されますが、エラーの原因を正確に特定するにはどうすればよいですか?