Skip to content

Commit

Permalink
Remove forgotten log message
Browse files Browse the repository at this point in the history
  • Loading branch information
christopheseyler committed Oct 30, 2024
1 parent 8add581 commit 9f0939a
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions sphinx_needs/directives/list2need.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@

from sphinx_needs.config import NeedsSphinxConfig


from sphinx_needs.logging import get_logger, log_warning

logger = get_logger(__name__)


NEED_TEMPLATE = """.. {{type}}:: {{title}}
{% if need_id is not none %}:id: {{need_id}}{%endif%}
{% if set_links_down %}:{{links_down_type}}: {{ links_down|join(', ') }}{%endif%}
Expand Down Expand Up @@ -121,15 +115,6 @@ def run(self) -> Sequence[nodes.Node]:
hide = self.options.get("hide", "")
metadata = self.options.get("meta-data", "")

if metadata:
log_warning(
logger,
metadata,
"needsequence",
location=None,

)

list_needs = []
# Storing the data in a sorted list
for content_line in content_raw.split("\n"):
Expand Down

0 comments on commit 9f0939a

Please sign in to comment.