소스 검색

ignore errors

Gildas 7 년 전
부모
커밋
41b0f3947a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      lib/browser-polyfill/custom-browser-polyfill.js

+ 2 - 2
lib/browser-polyfill/custom-browser-polyfill.js

@@ -146,11 +146,11 @@
 								.then(response => {
 									sendResponse(response);
 									if (chrome.runtime.lastError) {
-										console.error(chrome.runtime.lastError); // eslint-disable-line no-console
+										// ignored
 									}
 								})
 								.catch(error => {
-									console.error(error); // eslint-disable-line no-console
+									// ignored
 								});
 							return true;
 						}