Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/scm/github.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ class Github {
})
.catch(err => {
showLog(`Failed to push: ${err}`, LEVEL_ERROR);
showLog(`Failed to push: ${JSON.stringify(err)}`, LEVEL_ERROR);
});
}

Expand Down Expand Up @@ -184,6 +185,7 @@ class Github {
})
.fail(err => {
showLog(`Failed to update: ${err}`, LEVEL_ERROR);
showLog(`Failed to update: ${JSON.stringify(err)}`, LEVEL_ERROR);
});
}

Expand Down Expand Up @@ -336,6 +338,7 @@ class Github {
})
.catch((err) => {
showLog(`Failed to get user info: ${err}`, LEVEL_ERROR);
showLog(`Failed to get user info: ${JSON.stringify(err)}`, LEVEL_ERROR);
});
}

Expand Down Expand Up @@ -507,4 +510,4 @@ class Github {
.fail(reject);
});
}
}
}