You are getting the result you get because you use the same code at two places.
message.author.toString() + 'called' + message.author.toString()
^ once here ^ and once here
What you need to do is get the member you mentioned and use that instead.
message.mentions.members.first().toString()
1
solved how to @ youself and someone else in a embed on discord