We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pino
The dependency https://www.npmjs.com/package/pino is a very low overhead Node.js logger. It seems to be added in in dependencies, but it's not used. https://github.com/search?q=repo%3Abluesky-social%2Fsocial-app%20pino&type=code
Here's how to use is with express https://github.com/pinojs/pino/blob/HEAD/docs/web.md#pino-with-express for example
const app = require('express')() const pino = require('pino-http')() app.use(pino) app.get('/', function (req, res) { req.log.info('something') res.send('hello world') }) app.listen(3000)
It looks like the code was copied from the backend https://github.com/search?q=repo%3Abluesky-social%2Fatproto%20pino&type=code, and the pino dependency can be removed.
No response
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the Feature
The dependency https://www.npmjs.com/package/pino is a very low overhead Node.js logger.
It seems to be added in in dependencies, but it's not used.
https://github.com/search?q=repo%3Abluesky-social%2Fsocial-app%20pino&type=code
Here's how to use is with express https://github.com/pinojs/pino/blob/HEAD/docs/web.md#pino-with-express for example
It looks like the code was copied from the backend
https://github.com/search?q=repo%3Abluesky-social%2Fatproto%20pino&type=code, and the pino dependency can be removed.
Attachments
No response
Describe Alternatives
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: