removed unnecessary logs

This commit is contained in:
bill bittner 2017-07-19 15:42:56 -07:00
parent 2bda35968f
commit d4ffd3c80a

View file

@ -10,11 +10,10 @@ module.exports = {
if (result && (typeof result !== 'string')) { if (result && (typeof result !== 'string')) {
result = result.toString(); result = result.toString();
} }
// // make sure the ip address(es) are a string // make sure the ip address(es) are a string
if (ipAddress && (typeof ipAddress !== 'string')) { if (ipAddress && (typeof ipAddress !== 'string')) {
ipAddress = ipAddress.toString(); ipAddress = ipAddress.toString();
} }
logger.silly(name, claimId);
db.File db.File
.findOne({where: { name, claimId }}) .findOne({where: { name, claimId }})
.then(file => { .then(file => {
@ -25,7 +24,6 @@ module.exports = {
} else { } else {
FileId = null; FileId = null;
} }
logger.silly('file id:', FileId);
return db.Request return db.Request
.create({ .create({
action, action,