We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1453f75 commit d16994fCopy full SHA for d16994f
1 file changed
functions/helloworld/index.js
@@ -128,7 +128,7 @@ exports.helloGCSGeneric = (event, callback) => {
128
* @param {function} callback The callback function.
129
*/
130
exports.helloError = (event, callback) => {
131
- // This WILL be reported to Stackdriver errors
+ // This WILL be reported to Stackdriver Error Reporting
132
throw new Error('I failed you');
133
};
134
// [END functions_helloworld_error]
@@ -142,7 +142,7 @@ exports.helloError = (event, callback) => {
142
143
144
exports.helloError2 = (event, callback) => {
145
- // This will NOT be reported to Stackdriver errors
+ // This will NOT be reported to Stackdriver Error Reporting
146
throw 1;
147
148
// [END functions_helloworld_error_2]
0 commit comments