Skip to content

Commit 4e24c89

Browse files
committed
logger.warning(f"Failed to execute: {e}")
1 parent 281a7b4 commit 4e24c89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ext_api/proxmox_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def _response_analyze(self, response, filter_keys=None) -> str | list | dict | N
221221
return None
222222
return self._filter_response(response_data, filter_keys)
223223
except Exception as e:
224-
logger.error(f"Failed to execute: {e}")
224+
logger.warning(f"Failed to execute: {e}")
225225
return None
226226

227227
def _execute(

0 commit comments

Comments
 (0)