1
0
Fork 0

Log errors properly

This commit is contained in:
Gregory Eremin 2014-09-21 22:29:57 +04:00
parent 0f23ecde25
commit dcdc399fea
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ function updateTab(info) {
code: "document.title = '" + title + "';"
}, function() {
if (chrome.runtime.lastError) {
console.log(chrome.runtime.lastError.message);
console.error(chrome.runtime.lastError.message);
}
});
};