Skip to content

Commit 056d396

Browse files
DanielRufjuanpicado
authored andcommittedJan 15, 2019
fix: add logic to catch clause (#1183)
1 parent 13b8347 commit 056d396

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/api/web/endpoint/package.js

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import _ from 'lodash';
44
import {addScope, addGravatarSupport, deleteProperties, sortByName, DIST_TAGS, parseReadme} from '../../../lib/utils';
55
import {allow} from '../../middleware';
6+
import logger from '../../../lib/logger';
67
import type {Router} from 'express';
78
import type {
89
IAuth,
@@ -45,6 +46,7 @@ function addPackageWebApi(route: Router, storage: IStorageHandler, auth: IAuth)
4546
permissions.push(pkg);
4647
}
4748
} catch (err) {
49+
logger.logger.error({name: pkg.name, error: err}, 'permission process for @{name} has failed: @{error}');
4850
throw err;
4951
}
5052
}

0 commit comments

Comments
 (0)
Please sign in to comment.