Reclassify unhandled GDS records as information rather than a warning

This commit is contained in:
Mario Hüttel 2019-06-08 12:53:57 +02:00
parent e42aa36520
commit f625d2daba

View File

@ -691,6 +691,7 @@ int parse_gds_from_file(const char *filename, GList **library_list)
} }
rec_type = gds_convert_unsigend_int16(workbuff); rec_type = gds_convert_unsigend_int16(workbuff);
/* if begin: Allocate structures */ /* if begin: Allocate structures */
switch (rec_type) { switch (rec_type) {
case BGNLIB: case BGNLIB:
@ -866,7 +867,7 @@ int parse_gds_from_file(const char *filename, GList **library_list)
case STRNAME: case STRNAME:
break; break;
default: default:
GDS_WARN("Unhandled Record: %04x, len: %u", (unsigned int)rec_type, (unsigned int)rec_data_length); GDS_INF("Unhandled Record: %04x, len: %u\n", (unsigned int)rec_type, (unsigned int)rec_data_length);
break; break;
} /* switch(rec_type) */ } /* switch(rec_type) */