Browse Source

More fixes for GO problems...

Stephen Ficklin 6 years ago
parent
commit
d99e471a7f
1 changed files with 3 additions and 2 deletions
  1. 3 2
      tripal_chado/includes/TripalImporter/OBOImporter.inc

+ 3 - 2
tripal_chado/includes/TripalImporter/OBOImporter.inc

@@ -1325,8 +1325,9 @@ class OBOImporter extends TripalImporter {
       // name of the other.
       else {
         $new_name = $check_cvterm->getValue('name') . ' (' . $check_accession . ')';
-        $this->logMessage('Renaming !id1 to "!new_name".',
-          ['!id1' => $check_accession, '!new_name' => $new_name]);
+        // Enable these lines for debugging"
+        //$this->logMessage('Renaming !id1 to "!new_name".',
+        //  ['!id1' => $check_accession, '!new_name' => $new_name]);
         $check_cvterm->setValue('name', $new_name);
         $check_cvterm->update();
         return TRUE;