Skip to content

Commit

Permalink
Fix a repetition in error message (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
GabLeRoux authored Oct 19, 2020
1 parent 4ee0f06 commit a8982bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/src/api/reportBuildFailure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const reportBuildFailure = functions.https.onRequest(async (req: Request,
res.status(200).send('OK');
} catch (err) {
const message = `
Something went wrong while wrong while reporting a build failure
Something went wrong while reporting a build failure
${err.message}
`;
firebase.logger.error(message, err);
Expand Down

0 comments on commit a8982bc

Please sign in to comment.