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

This commit is contained in:
David Rose 2003-04-04 16:24:24 +00:00
parent 398442ee18
commit d3a082ffde
1 changed files with 2 additions and 2 deletions

View File

@ -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) {