Yuki Takei 7 лет назад
Родитель
Сommit
8ab6ed3d65
2 измененных файлов с 3 добавлено и 3 удалено
  1. 1 1
      config/logger/config.prod.js
  2. 2 2
      src/server/util/importer.js

+ 1 - 1
config/logger/config.prod.js

@@ -1,3 +1,3 @@
 module.exports = {
 module.exports = {
-  default: 'warn',
+  default: 'info',
 };
 };

+ 2 - 2
src/server/util/importer.js

@@ -20,7 +20,7 @@ module.exports = crowi => {
       team:        config.crowi['importer:esa:team_name'],
       team:        config.crowi['importer:esa:team_name'],
       accessToken: config.crowi['importer:esa:access_token'],
       accessToken: config.crowi['importer:esa:access_token'],
     });
     });
-    logger.info('initialize esa importer');
+    logger.debug('initialize esa importer');
   };
   };
 
 
   /**
   /**
@@ -28,7 +28,7 @@ module.exports = crowi => {
    */
    */
   importer.initializeQiitaClient = () => {
   importer.initializeQiitaClient = () => {
     restQiitaAPIService.reset();
     restQiitaAPIService.reset();
-    logger.info('initialize qiita importer');
+    logger.debug('initialize qiita importer');
   };
   };
 
 
   /**
   /**