Find handler name

Hi all. For debugging purposes, is there a way to find a handlers name from within the handler?

on myHandler()
	try
		1 / 0
	on error
		log "There is was an error in handler . "
	end try
end myhandler

Hello.

I always write the name. I don’t think you can fix this, unless you execute your handlers from within a dispatcher, that snatches the handlers name it is about to dispatch.

Thanks McUsr, that’s what I guessed. I guess a few extra words won’t kill me.