Skip to content

Commit

Permalink
doc: extensions: software_maturity_table: skip missing features
Browse files Browse the repository at this point in the history
If a feature is not available (e.g. homekit), just log it as a debug
message but do not error, so the build can continue.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
(cherry picked from commit 2401e61)
Signed-off-by: Guojun Wang <guojun.wang@nordicsemi.no>
  • Loading branch information
gmarull authored and cvinayak committed Jan 18, 2024
1 parent c14d1aa commit 3bd172e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/_extensions/software_maturity_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def run(self):
default_values = {}

if table_type != "top_level" and table_type not in table_info["features"]:
logger.error(f"No information present for requested feature '{table_type}'")
logger.debug(f"No information present for requested feature '{table_type}'")
return []

all_socs = table_info["all_socs"]
Expand Down

0 comments on commit 3bd172e

Please sign in to comment.