I've been following the codelabs tutorial here to deploy my first functions to firebase. I've made it to step 8 of the tutorial ("Welcome new users").
The deploy looks successful when I run firebase deploy --only functions from within the functions subdirectory:
Marks-MacBook-Air-3:functions mf$ firebase deploy --only functions
=== Deploying to 'friendlychat-21221'...
i deploying functions Running command: npm --prefix "$RESOURCE_DIR" run lint
functions@ lint /Users/mf/Desktop/friendlychat-web/cloud-functions-start/functions eslint .
✔ functions: Finished running predeploy script. i functions: ensuring necessary APIs are enabled... ✔ functions: all necessary APIs are enabled i functions: preparing functions directory for uploading...
✔ Deploy complete!
But looking at my firebase dashboard, it doesn't look like they deployed after all: 
I'm not even sure where to begin troubleshooting, since the logs in the cloud functions tab is empty.
Has anyone encountered this before and/or have a good troubleshooting strategy?
Update 1:15 PM Friday 25 May, 2018: This is my index.js file in the functions subdirectory:
const functions = require('firebase-functions'); const admin = require('firebase-admin'); admin.initializeApp(); // TODO(DEVELOPER): Write the addWelcomeMessages Function here. // Adds a message that welcomes new users into the chat. exports.addWelcomeMessages = functions.auth.user().onCreate(user => { console.log('A new user signed in for the first time.'); const fullName = user.displayName || 'Anonymous'; // Saves the new welcome message into the database // which then displays it in the FriendlyChat clients. return admin.database().ref('messages').push({ name: 'Firebase Bot', photoUrl: '/images/firebase-logo.png', // Firebase logo text: `${fullName} signed in for the first time! Welcome!`, // Using back-ticks. }).then(() => { console.log('Welcome message written to database.'); }); }); // TODO(DEVELOPER): Write the blurOffensiveImages Function here. // TODO(DEVELOPER): Write the sendNotifications Function here. Here are the contents of the functions subdirectory:
