mirror of https://gitee.com/bigwinds/arangodb
Don't log stacktrace when fishbowl update fails (#5088)
This commit is contained in:
parent
8f40bc35e1
commit
51b036be9f
|
@ -362,7 +362,7 @@ router.get('/fishbowl', function (req, res) {
|
||||||
try {
|
try {
|
||||||
store.update();
|
store.update();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.warnLines(`Failed to update Foxx store: ${e.stack}`);
|
console.warn('Failed to update Foxx store from GitHub.');
|
||||||
}
|
}
|
||||||
res.json(store.availableJson());
|
res.json(store.availableJson());
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue