add logs about storing comments and builds
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
0883d167bc
commit
b3b06a0aa8
|
@ -49,10 +49,12 @@ class Builds {
|
||||||
}
|
}
|
||||||
|
|
||||||
async addBuild (pr, build) {
|
async addBuild (pr, build) {
|
||||||
|
console.log(`Storing build for PR-${pr}: #${build.id} for ${build.platform}`)
|
||||||
return await this.builds.insert({pr, ...build})
|
return await this.builds.insert({pr, ...build})
|
||||||
}
|
}
|
||||||
|
|
||||||
async addComment (pr, comment_id) {
|
async addComment (pr, comment_id) {
|
||||||
|
console.log(`Storing comment for PR-${pr}: ${comment_id}`)
|
||||||
return await this.comments.insert({pr, comment_id})
|
return await this.comments.insert({pr, comment_id})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue