We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 745bbaf commit 941e767Copy full SHA for 941e767
2 files changed
README.md
@@ -96,6 +96,7 @@ configStrategy = {
96
}
97
98
```
99
+Note: To print detailed logs, add `CACHE_DEBUG_ENABLED = '1'` in your env variables.
100
## Examples:
101
102
#### Create Cache Object:
config/coreConstant.js
@@ -18,10 +18,9 @@ class CoreConstant {
18
*
19
* @returns {boolean}
20
*/
21
- // TODO - take it from config
22
get DEBUG_ENABLED() {
23
// eslint-disable-next-line no-process-env
24
- return process.env.DEBUG_ENABLED;
+ return process.env.CACHE_DEBUG_ENABLED;
25
26
27
0 commit comments