Skip to content

Commit

Permalink
Log invalid conformance as an error
Browse files Browse the repository at this point in the history
  • Loading branch information
hasty committed Oct 25, 2024
1 parent 142ba54 commit 8f1f1b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion matter/spec/table_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ func (ti *TableInfo) ReadConformance(row *asciidoc.TableRow, column matter.Table
s = matter.StripTypeSuffixes(s)
conf := conformance.ParseConformance(s)
if conformance.IsGeneric(conf) {
slog.Warn("failed parsing conformance cell", slog.String("value", s))
slog.Error("failed parsing conformance cell", slog.String("value", s))
}
return conf
}
Expand Down

0 comments on commit 8f1f1b1

Please sign in to comment.