Commit 94ae1cf1878323ba787446c146b998ae9c2946aa
1 parent
f1d0be5763
Exists in
master
log.verbose
Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff
index.js
... | ... | @@ -45,7 +45,7 @@ function sendIgnoreResponse(destination, message) { |
45 | 45 | } |
46 | 46 | |
47 | 47 | function onPm(data) { |
48 | - logger.info('onPM()', {data: data}); | |
48 | + logger.verbose('onPM()', {data: data}); | |
49 | 49 | |
50 | 50 | var message = striptags(data.message); |
51 | 51 | /* |
... | ... | @@ -68,7 +68,7 @@ function onPm(data) { |
68 | 68 | } |
69 | 69 | |
70 | 70 | function onOfflinePM(data) { |
71 | - logger.info('onOfflinePM()', {data: data}); | |
71 | + logger.verbose('onOfflinePM()', {data: data}); | |
72 | 72 | sendIgnoreResponse(data.sender, data.message); |
73 | 73 | } |
74 | 74 |