1
0
Fork 0

Don't log stacktrace when fishbowl update fails (#5088)

This commit is contained in:
Alan Plum 2018-04-13 10:51:27 +02:00 committed by Jan
parent 8f40bc35e1
commit 51b036be9f
1 changed files with 1 additions and 1 deletions

View File

@ -362,7 +362,7 @@ router.get('/fishbowl', function (req, res) {
try {
store.update();
} catch (e) {
console.warnLines(`Failed to update Foxx store: ${e.stack}`);
console.warn('Failed to update Foxx store from GitHub.');
}
res.json(store.availableJson());
})