Browse Source

'unable to create object of type ...' is really an info, not an error

David Rose 23 years ago
parent
commit
d3a082ffde
1 changed files with 2 additions and 2 deletions
  1. 2 2
      panda/src/putil/bamReader.cxx

+ 2 - 2
panda/src/putil/bamReader.cxx

@@ -739,9 +739,9 @@ p_read_object() {
       }
     }
 
-    //Just some sanity checks
+    // Just some sanity checks
     if (object == (TypedWritable *)NULL) {
-      bam_cat.error()
+      bam_cat.info()
         << "Unable to create an object of type " << type << endl;
 
     } else if (object->get_type() != type) {