Zed
Zed

Reputation: 1

Send console logs to an user in pm discord.js

Hello is it possible to send the console logs in pm to an user (me).

Example i have console.log('User generated a key') And i would like that it sends it to me each time there is a new log in console.

Upvotes: 0

Views: 52

Answers (1)

Azer
Azer

Reputation: 496

let user = client.users.cache.get('') //your id
user.send()// what u logged, put that in a var and send it

Upvotes: 1

Related Questions