diff --git a/functions/log/index.js b/functions/log/index.js index 5cebd11a78..62e51cbe54 100644 --- a/functions/log/index.js +++ b/functions/log/index.js @@ -18,6 +18,7 @@ // [START functions_log_helloworld] exports.helloWorld = (event, callback) => { console.log('I am a log entry!'); + console.error('I am an error!'); callback(); }; // [END functions_log_helloworld]