Overloading system functions

I want to overload a system function Log.

So in my .script I have my own Log liked this

to Log msg
  # do something extra
  Log msg
end Log

Problem is, now that I have overloaded Log, I can’t call the system Log. Is there something like a super.Log so that I can call the Sensetalk Log function instead of my own inside the above function?

Yes, all you have to do is pass the Log message along at the end of your handler, like this:

to Log msg 
  # do something extra 
  pass Log 
end Log