/**
  * updateAssetLogWithThreadInformation
  *
  * @param $assetLog
  *
  * @author  Vincent Sposato <*****@*****.**>
  * @version v1.0
  */
 protected function updateAssetLogWithThreadInformation($assetLog)
 {
     $loadedAssetLog = Actionlog::find($assetLog->id);
     $loadedAssetLog->thread_id = $this->currentAssetLogId;
     $loadedAssetLog->update();
     unset($loadedAssetLog);
 }