From 302df44ebacebcd6d6c7b4c9a79e0d62c99cbc49 Mon Sep 17 00:00:00 2001 From: Ace Nassri Date: Thu, 21 Jun 2018 12:49:35 -0700 Subject: [PATCH] Add `console.error` statement --- functions/log/index.js | 1 + 1 file changed, 1 insertion(+) 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]