Uriyah Liberman
Uriyah Liberman

Reputation: 59

discord.js user id to username

I am making a bot and I am trying to make it happen that every time a person uses a command it will log it in the console, this is my code.

            console.log(message.author ++ ,`used the command 'come'`);

(the command is come) every time I do this it logs the user's id, and I want it to send the username (user#6969)

Upvotes: 1

Views: 102

Answers (1)

cbrxyz
cbrxyz

Reputation: 105

console.log(message.author.tag, " used the command 'come'");
// prints: username#1234 used the command 'come'

Upvotes: 2

Related Questions