Commit ee816f24a38a8fc811019fa8aff06912b361851d
1 parent
5061722fcf
Exists in
master
logger info
Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff
index.js
... | ... | @@ -36,10 +36,10 @@ if (config.redis && config.redis.host) { |
36 | 36 | channel: 'log_`' + config.globals.smscid + '_' + config.globals.jid |
37 | 37 | } |
38 | 38 | logger.add(winston.transports.Redis, winstonRedisOptions); |
39 | - logger.verbose("Add redis log channel", {options: winstonRedisOptions}); | |
39 | + logger.info("Add redis log channel", {options: winstonRedisOptions}); | |
40 | 40 | } |
41 | 41 | else { |
42 | - logger.verbose("Skip create redis log channel because of undefined config.redis.host"); | |
42 | + logger.info("Skip create redis log channel because of undefined config.redis.host"); | |
43 | 43 | } |
44 | 44 | |
45 | 45 |