set_report_path_field_properties error->warn

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2024-12-28 16:20:17 -08:00
parent adaf73cb3a
commit 5824e44abf
1 changed files with 2 additions and 2 deletions

View File

@ -464,7 +464,7 @@ set_report_path_field_properties(const char *field_name,
if (field)
field->setProperties(title, width, left_justify);
else
sta->report()->error(1575, "unknown report path field %s", field_name);
sta->report()->warn(1575, "unknown report path field %s", field_name);
}
void
@ -476,7 +476,7 @@ set_report_path_field_width(const char *field_name,
if (field)
field->setWidth(width);
else
sta->report()->error(1576, "unknown report path field %s", field_name);
sta->report()->warn(1576, "unknown report path field %s", field_name);
}
void