diff --git a/lib/modules/ipfs/index.js b/lib/modules/ipfs/index.js index 1d9a3741..ce83c8b4 100644 --- a/lib/modules/ipfs/index.js +++ b/lib/modules/ipfs/index.js @@ -43,7 +43,6 @@ class IPFS { } setServiceCheck() { - console.dir("setServiceCheck"); let self = this; let storageConfig = this.storageConfig; @@ -67,14 +66,14 @@ class IPFS { self.events.request("services:register", 'IPFS', function (cb) { self._checkService((err, body) => { if (err) { - self.logger.info("IPFS unavailable"); + self.logger.trace("IPFS unavailable"); return cb({name: "IPFS ", status: 'off'}); } if (body.Version) { - self.logger.info("IPFS available"); + self.logger.trace("IPFS available"); return cb({name: ("IPFS " + body.Version), status: 'on'}); } - self.logger.info("IPFS available"); + self.logger.trace("IPFS available"); return cb({name: "IPFS ", status: 'on'}); }); });