Skip to content

Commit

Permalink
s/errors/Error Reporting/ (#678)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ace Nassri authored Jul 23, 2018
1 parent 1453f75 commit d16994f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions/helloworld/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ exports.helloGCSGeneric = (event, callback) => {
* @param {function} callback The callback function.
*/
exports.helloError = (event, callback) => {
// This WILL be reported to Stackdriver errors
// This WILL be reported to Stackdriver Error Reporting
throw new Error('I failed you');
};
// [END functions_helloworld_error]
Expand All @@ -142,7 +142,7 @@ exports.helloError = (event, callback) => {
* @param {function} callback The callback function.
*/
exports.helloError2 = (event, callback) => {
// This will NOT be reported to Stackdriver errors
// This will NOT be reported to Stackdriver Error Reporting
throw 1;
};
// [END functions_helloworld_error_2]
Expand Down

0 comments on commit d16994f

Please sign in to comment.