Skip to content

Commit 8bf66dd

Browse files
committed
Adding documentation
1 parent ca4d393 commit 8bf66dd

File tree

2 files changed

+73
-0
lines changed

2 files changed

+73
-0
lines changed

Logging.md

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
[![Generic badge](https://img.shields.io/badge/LOGGING-NEW-GREEN.svg)](https://shields.io/)
2+
3+
# Logging in CyberSource REST Client SDK (Node.js)
4+
5+
Since v0.0.35, a new logging framework has been introduced in the SDK. This new logging framework makes use of Winston, and standardizes the logging so that it can be integrated with the logging in the client application. The decision to use Winston for building this logging framework has been taken based on benchmark studies that have been made on various logging platforms supported for Node.js.
6+
7+
[One such study](https://www.loggly.com/blog/benchmarking-popular-node-js-logging-libraries/) performed benchmarking of five logging frameworks on the market — Log4js, Winston, Bunyan, winston-syslog, and bunyan-syslog. In this study,
8+
9+
> _Winston performed best when logging to the console. Winston and Bunyan both performed best in their own ways when logging to the file system._
10+
11+
## Winston Configuration
12+
13+
In order to leverage the new logging framework, the following configuration settings may be added to the merchant configuration as part of **`LogConfiguration`**:
14+
15+
* enableLog
16+
* logDirectory
17+
* logFileName
18+
* logFileMaxSize
19+
* loggingLevel
20+
* maxLogFiles
21+
* enableMasking
22+
23+
In our [sample Configuration.js](https://github.com/CyberSource/cybersource-rest-samples-node/blob/master/Data/Configuration.js) file, the following lines
24+
25+
```javascript
26+
'enableLog': EnableLog,
27+
'logFilename': LogFileName,
28+
'logDirectory': LogDirectory,
29+
'logFileMaxSize': LogfileMaxSize
30+
```
31+
32+
have to be replaced by the following lines
33+
34+
```javascript
35+
'logConfiguration': {
36+
'enableLog': EnableLog,
37+
'logFileName': LogFileName,
38+
'logDirectory': LogDirectory,
39+
'logFileMaxSize': LogfileMaxSize,
40+
'loggingLevel': LogLevel,
41+
'enableMasking': EnableMasking
42+
}
43+
```
44+
45+
where, `EnableLog`, `LogFileName`, `LogDirectory`, `LogfileMaxSize`, `LogLevel`, and `EnableMasking` are variables to be provided.
46+
47+
### Important Notes
48+
49+
The variable `enableMasking` needs to be set to `true` if sensitive data in the request/response should be hidden/masked.
50+
51+
Sensitive data fields are listed below:
52+
53+
* Card Security Code
54+
* Card Number
55+
* Any field with `number` in the name
56+
* Card Expiration Month
57+
* Card Expiration Year
58+
* Account
59+
* Routing Number
60+
* Email
61+
* First Name & Last Name
62+
* Phone Number
63+
* Type
64+
* Token
65+
* Signature

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,14 @@ Cybersource maintains a complete sandbox environment for testing and development
5656

5757
API credentials are different for each environment, so be sure to switch to the appropriate credentials when switching environments.
5858

59+
### Logging
60+
61+
[![Generic badge](https://img.shields.io/badge/LOGGING-NEW-GREEN.svg)](https://shields.io/)
62+
63+
Since v0.0.35, a new logging framework has been introduced in the SDK. This new logging framework makes use of Winston, and standardizes the logging so that it can be integrated with the logging in the client application.
64+
65+
More information about this new logging framework can be found in this file : [Logging.md](Logging.md)
66+
5967
## License
6068

6169
This repository is distributed under a proprietary license. See the provided [`LICENSE.txt`](/LICENSE.txt) file.

0 commit comments

Comments
 (0)