-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Added Extensive Loggers #95
Changes from all commits
7dc9acf
b67eb29
f8343fe
1ee9134
d078f5e
1409af4
758f507
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
API Base class with util functions | ||
""" | ||
import json | ||
import logging | ||
import datetime | ||
import uuid | ||
from warnings import warn | ||
|
@@ -17,6 +18,8 @@ | |
from .constants import dimensions_fields_mapping | ||
|
||
|
||
logger = logging.getLogger(__name__) | ||
|
||
class ApiBase: | ||
"""The base class for all API classes.""" | ||
|
||
|
@@ -186,6 +189,7 @@ def __post_request(self, dict_body: dict, api_url: str): | |
A response from the request (dict). | ||
""" | ||
|
||
logger.debug('Payload for post request: %s', dict_body) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Improve logging security and efficiency. The addition of logging for request payloads and responses is beneficial for debugging. However, consider the following improvements:
Example of sanitized logging: logger.debug('Payload for post request: %s', self._sanitize_data(dict_body))
logger.info('Response status: %s', raw_response.status_code) Implement a Also applies to: 204-204, 245-245 |
||
raw_response = self.__post_request_for_raw_response(dict_body, api_url) | ||
try: | ||
parsed_xml = xmltodict.parse(raw_response.text, force_list={self.__dimension}) | ||
|
@@ -196,6 +200,17 @@ def __post_request(self, dict_body: dict, api_url: str): | |
parsed_response = json.loads(json.dumps(parsed_xml)) | ||
|
||
if raw_response.status_code == 200: | ||
response = parsed_response.get('response', {}) | ||
control_status = response.get('control', {}).get('status', '') | ||
auth_status = response.get('operation', {}).get('authentication', {}).get('status', '') | ||
result_status = response.get('operation', {}).get('result', {}).get('status', '') | ||
|
||
|
||
if control_status == 'failure' or auth_status == 'failure' or result_status == 'failure': | ||
logger.info('Response for post request: %s', raw_response.text) | ||
else: | ||
logger.debug('Response for post request: %s', raw_response.text) | ||
|
||
if parsed_response['response']['control']['status'] == 'success': | ||
api_response = parsed_response['response']['operation'] | ||
|
||
|
@@ -235,6 +250,8 @@ def __post_request(self, dict_body: dict, api_url: str): | |
} | ||
raise WrongParamsError('Something went wrong', custom_response) | ||
|
||
|
||
logger.info('Response for post request: %s', raw_response.text) | ||
Comment on lines
+253
to
+254
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove redundant logging This logging statement is redundant with the logging added earlier in the method. Additionally, logging the entire response text might expose sensitive information. Consider removing this line or modifying it to log only non-sensitive information: logger.info('Response status code: %s', raw_response.status_code) |
||
if 'result' in parsed_response: | ||
if 'errormessage' in parsed_response['result']: | ||
parsed_response = parsed_response['result']['errormessage'] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
setuptools.setup( | ||
name='sageintacctsdk', | ||
version='1.23.2', | ||
version='1.23.3', | ||
author='Ashwin T', | ||
author_email='[email protected]', | ||
description='Python SDK for accessing Sage Intacct APIs', | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Improve logger initialization
Good addition of logging functionality. However, consider the following improvements:
setLevel
method instead of directly setting thelevel
attribute:Also applies to: 21-22