removed instance log
This commit is contained in:
parent
713fa3f1e3
commit
d3316b416d
1 changed files with 2 additions and 2 deletions
|
@ -67,7 +67,7 @@ function getAssetByLongClaimId (fullClaimId, name) {
|
|||
db.Claim
|
||||
.resolveClaim(name, fullClaimId)
|
||||
.then(resolveResult => {
|
||||
logger.debug('resolve result >> ', resolveResult);
|
||||
logger.debug('resolve result >> ', resolveResult.dataValues);
|
||||
// if no result, return early (claim doesn't exist or isn't free)
|
||||
if (!resolveResult) {
|
||||
resolve(NO_CLAIM);
|
||||
|
@ -223,7 +223,7 @@ module.exports = {
|
|||
return db.Claim.resolveClaim(fileInfo.name, fileInfo.claimId);
|
||||
})
|
||||
.then(resolveResult => {
|
||||
logger.debug('resolve result >>', resolveResult);
|
||||
logger.debug('resolve result >>', resolveResult.dataValues);
|
||||
fileInfo['thumbnail'] = chooseThumbnail(resolveResult, DEFAULT_THUMBNAIL);
|
||||
fileInfo['title'] = resolveResult.title;
|
||||
fileInfo['description'] = resolveResult.description;
|
||||
|
|
Loading…
Reference in a new issue