Skip to content
This repository was archived by the owner on May 19, 2025. It is now read-only.

Commit 63762a2

Browse files
committed
✂️ Remove cache console
1 parent e0a6d3d commit 63762a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/Cache.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const DEFAULT_CACHE_DIR = path.join(__dirname, '../build/cache');
2020
*/
2121
class Cache {
2222
constructor(options = {}) {
23-
logger.info('Initializing SSR Cache Storage...');
23+
// logger.info('Initializing SSR Cache Storage...');
2424
//make cache dir before hand
2525
this.flushDir = options.flushDir || DEFAULT_CACHE_DIR;
2626
makeDir.sync(this.flushDir);
@@ -31,7 +31,7 @@ class Cache {
3131
if (options.flush) {
3232
this._initFlushTimer();
3333
}
34-
logger.info('Initialize SSR Cache Storage Done!');
34+
// logger.info('Initialize SSR Cache Storage Done!');
3535
}
3636

3737
get(key) {

0 commit comments

Comments
 (0)