aboutsummaryrefslogtreecommitdiff
path: root/src/background.js
diff options
context:
space:
mode:
authorDeterminant <[email protected]>2019-02-02 22:15:54 -0500
committerDeterminant <[email protected]>2019-02-02 22:15:54 -0500
commit580990a5eb4a79892c48e3a3fce3386fe80e6cc2 (patch)
treeedc4e19741cf6ff50a45ba7c81cb1cb2f1611c66 /src/background.js
parent848c4f0e60340e5fc6079a0bff1bf516845576e0 (diff)
finish cache design
Diffstat (limited to 'src/background.js')
-rw-r--r--src/background.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/background.js b/src/background.js
index 7bc0318..4fefceb 100644
--- a/src/background.js
+++ b/src/background.js
@@ -23,7 +23,7 @@ chrome.runtime.onConnect.addListener(function(port) {
else if (msg.type == 4) {
calData[msg.data.id].getEvents(new Date(msg.data.start), new Date(msg.data.end))
.catch(e => {
- console.log(`cannot load calendar ${msg.data.id}`);
+ console.log(`cannot load calendar ${msg.data.id}`, e);
return [];
})
.then(data => {