async def on_member_update(before, after):
print(str(after.username))
if str(after.username) == "example username" # I'm looking for something like this
print(str(af`enter code here`ter.username))
if str(before.status) == "online":
if str(after.status) == "offline":
print("offline")
elif str(before.status) == "offline":
if str(after.status) == "online":
print("online")
So how can I get it to display which user is triggering this event?