public function updated_job_status_with_log($args, $bypass_auth = false)
 {
     WPML_TranslationProxy_Com_Log::log_xml_rpc(array('tp_job_id' => $args[0], 'cms_id' => $args[1], 'status' => $args[2], 'signature' => 'UNDISCLOSED'));
     $args[3] = $bypass_auth ? true : $args[3];
     $ret = 'Project does not exist';
     if ($this->project) {
         $ret = $this->update_status($args, $bypass_auth);
     }
     WPML_TranslationProxy_Com_Log::log_xml_rpc(array('result' => $ret));
     return $ret;
 }