Skip to content

Commit 130c70a

Browse files
committed
Adding documentation
1 parent a0f8ec5 commit 130c70a

File tree

2 files changed

+70
-0
lines changed

2 files changed

+70
-0
lines changed

Logging.md

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
[![Generic badge](https://img.shields.io/badge/LOGGING-NEW-GREEN.svg)](https://shields.io/)
2+
3+
# Logging in CyberSource REST Client SDK (Python)
4+
5+
Since v0.0.31, a new logging framework has been introduced in the SDK. This new logging framework makes use of Python's native logging, and standardizes the logging so that it can be integrated with the logging in the client application.
6+
7+
## Python's native logging Configuration
8+
9+
In order to leverage the new logging framework, the following configuration settings may be added to the merchant configuration as part of **`LogConfiguration`**:
10+
11+
* enableLog
12+
* log_directory
13+
* log_file_name
14+
* log_format
15+
* log_date_format
16+
* log_max_size
17+
* log_level
18+
* enable_masking
19+
20+
In our [sample Configuration.py](https://github.com/CyberSource/cybersource-rest-samples-python/blob/master/data/Configuration.py) file, the following lines have been added to support this new framework:
21+
22+
```python
23+
self.enable_log = True
24+
self.log_file_name = "cybs"
25+
self.log_maximum_size = 10487560
26+
self.log_directory = os.path.join(os.getcwd(), "Logs")
27+
self.log_level = "Debug"
28+
self.enable_masking = False
29+
self.log_format = "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
30+
self.log_date_format = "%Y-%m-%d %H:%M:%S"
31+
...
32+
log_config = LogConfiguration()
33+
log_config.set_enable_log(self.enable_log)
34+
log_config.set_log_directory(self.log_directory)
35+
log_config.set_log_file_name(self.log_file_name)
36+
log_config.set_log_maximum_size(self.log_maximum_size)
37+
log_config.set_log_level(self.log_level)
38+
log_config.set_enable_masking(self.enable_masking)
39+
log_config.set_log_format(self.log_format)
40+
log_config.set_log_date_format(self.log_date_format)
41+
configuration_dictionary["log_config"] = log_config
42+
```
43+
44+
### Important Notes
45+
46+
The variable `enableMasking` needs to be set to `true` if sensitive data in the request/response should be hidden/masked.
47+
48+
Sensitive data fields are listed below:
49+
50+
* Card Security Code
51+
* Card Number
52+
* Any field with `number` in the name
53+
* Card Expiration Month
54+
* Card Expiration Year
55+
* Account
56+
* Routing Number
57+
* Email
58+
* First Name & Last Name
59+
* Phone Number
60+
* Type
61+
* Token
62+
* Signature

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@ Cybersource maintains a complete sandbox environment for testing and development
5757
5858
API credentials are different for each environment, so be sure to switch to the appropriate credentials when switching environments.
5959
60+
### Logging
61+
62+
[![Generic badge](https://img.shields.io/badge/LOGGING-NEW-GREEN.svg)](https://shields.io/)
63+
64+
Since v0.0.31, a new logging framework has been introduced in the SDK. This new logging framework makes use of Python's native logging, and standardizes the logging so that it can be integrated with the logging in the client application.
65+
66+
More information about this new logging framework can be found in this file : [Logging.md](Logging.md)
67+
6068
## License
6169

6270
This repository is distributed under a proprietary license.

0 commit comments

Comments
 (0)