Skip to content
This repository was archived by the owner on Dec 8, 2025. It is now read-only.

Commit 17bc34d

Browse files
changes empty request result severity from error to info and clarified code comment
1 parent 1f75bd6 commit 17bc34d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/utils/methods_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,10 @@ def query_something(
132132

133133
LOGGER.info("> getting %s", name)
134134

135-
# request all Sites from SPP
135+
# request information from SPP via the api_queries.py file
136136
elem_list = source_func()
137137
if(not elem_list):
138-
ExceptionUtils.error_message(f">> No {name} are found")
138+
LOGGER.info(f"WARNING: No {name} are returned when requesting from server")
139139

140140
if(rename_tuples):
141141
for elem in elem_list:

0 commit comments

Comments
 (0)