Skip to content

Commit

Permalink
removed warning logging in substitute variables
Browse files Browse the repository at this point in the history
  • Loading branch information
giorgia-fusco8 committed Mar 1, 2024
1 parent bd5bfde commit 8d9b481
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## 2.2.x
### 2.2.4
#### Bugfix
* Removed warning logging in *\_substitute_variables*
### 2.2.3
#### Bugfix
* Fixed rule get_stats
Expand Down
1 change: 0 additions & 1 deletion routingfilter/routing.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,6 @@ def _substitute_variables(self, values: str) -> List | str:
if variable_values:
res = variable_values
else:
self.logger.warning(f"Variable {values} does not exist in variables dictionary.")
res = values
return res

Expand Down

0 comments on commit 8d9b481

Please sign in to comment.