/**
  * Log the property set update from element manager action
  * @return void
  */
 public function logManagerAction()
 {
     $key = $this->object ? $this->object->get($this->primaryKeyField) : $this->getProperty('elementType') . ' ' . $this->getProperty('elementId') . ' Default';
     $this->modx->logManagerAction($this->objectType . '_update_from_element', $this->classKey, $key);
 }