I've got several workflows that call several actions.
In an effort to make the logging a little bit better, I'm wondering if there's a way to know the name of the action from within the action itself.
so for example, i have an action
com.anoop.library.GetVMUuid
within the script, can i do something like
System.log($this + ": VM UUID is " + uuid);
is that possible? or are there alternatives?
thanks.