mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
debug: don't log http requests for /packs etc
This commit is contained in:
parent
8d312bdbea
commit
083496943a
1 changed files with 8 additions and 1 deletions
|
|
@ -91,7 +91,14 @@ if (Conf.sentryDsn) {
|
||||||
app.use('*', sentryMiddleware({ dsn: Conf.sentryDsn }));
|
app.use('*', sentryMiddleware({ dsn: Conf.sentryDsn }));
|
||||||
}
|
}
|
||||||
|
|
||||||
app.use('*', logger(Debug('ditto:http')));
|
const debug = Debug('ditto:http');
|
||||||
|
|
||||||
|
app.use('/api', logger(debug));
|
||||||
|
app.use('/relay', logger(debug));
|
||||||
|
app.use('/.well-known', logger(debug));
|
||||||
|
app.use('/users', logger(debug));
|
||||||
|
app.use('/nodeinfo', logger(debug));
|
||||||
|
app.use('/oauth', logger(debug));
|
||||||
|
|
||||||
app.get('/api/v1/streaming', streamingController);
|
app.get('/api/v1/streaming', streamingController);
|
||||||
app.get('/api/v1/streaming/', streamingController);
|
app.get('/api/v1/streaming/', streamingController);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue