Ramon
WWasp
•Created by Ramon on 3/7/2025 in #đŸ™‹questions
Logging requestID / correlationID
Thanks@martinsos! I think my current challenge is more related to the WASP implementation than the logging library.
Is there a way to access the Express.js/Node.js "req" object from a WASP operation? Or add a custom request ID in the context? I don't see how to send the request ID from the middleware to the WASP operations.
12 replies
WWasp
•Created by Ramon on 3/7/2025 in #đŸ™‹questions
Logging requestID / correlationID
@kapa.ai
12 replies
WWasp
•Created by Ramon on 3/7/2025 in #đŸ™‹questions
Logging requestID / correlationID
Hi @Filip, thanks for your answer!
I tried configuring pino as follows:
This adds the request ID to the HTTPS request logs but not to my own logs that I have added to the actions and queries. Do you know how to get the request ID to the WASP operations?
import pino from 'pino';
const logger = pino({
level: process.env.NODE_ENV === 'production' ? 'info' : 'debug',
formatters: {
level(label) {
return { level: label };
}
}
});
export default logger;
And then the global middleware:
export const serverGlobalMiddlewareFn: MiddlewareConfigFn = (middlewareConfig) => {
middlewareConfig.set('logger', pinoMiddleware )
return middlewareConfig
}
const pinoMiddleware = pinoHttp({
logger,
genReqId: (req) => uuidv4(), // Pino-HTTP generarĂ¡ el request ID automĂ¡ticamente
customLogLevel: (req, res, err) => {
if (res.statusCode >= 500) return 'error';
if (res.statusCode >= 400) return 'warn';
return 'info';
},
serializers: {
req(req) {
return {
method: req.method,
url: req.url,
requestId: req.id,
};
},
res(res) {
return {
statusCode: res.statusCode,
};
}
}
});
This adds the request ID to the HTTPS request logs but not to my own logs that I have added to the actions and queries. Do you know how to get the request ID to the WASP operations?
12 replies
WWasp
•Created by Ramon on 2/9/2025 in #đŸ™‹questions
Verify email in playwright end-to-end tests
Great one! I will try that. I think it would be helpful to be stated in the e2e-tests README!
8 replies
WWasp
•Created by Ramon on 2/2/2025 in #đŸ™‹questions
Google Auth Custom Fields (not available from Google)
It worked, thank you so much for your support!
7 replies
WWasp
•Created by Ramon on 9/4/2024 in #đŸ™‹questions
Authenticated image download
Thanks, for my first version I'm using Multer instead of AWS S3, although my plan is to migrate to S3 as soon as the first users join. Do you know how to return these files from the server?
10 replies
WWasp
•Created by Ramon on 8/12/2024 in #đŸ™‹questions
Infinite loop if updateCurrentUser returns void
I saw that the updateCurrentUser function is the only one that was missing the await, so maybe you want to update it in the opensaas template as well!
16 replies
WWasp
•Created by Ramon on 8/12/2024 in #đŸ™‹questions
Infinite loop if updateCurrentUser returns void
Indeed @Vinny (@Wasp) , adding the await seems to fix the issue. I still don't understand why, do you know it?
16 replies
WWasp
•Created by Ramon on 8/12/2024 in #đŸ™‹questions
Infinite loop if updateCurrentUser returns void
Hey @Vinny (@Wasp)! I have received a notification but your reply has been removed đŸ˜¯ Do you know how to fix this issue in the useEffect?
16 replies
WWasp
•Created by Ramon on 8/12/2024 in #đŸ™‹questions
Infinite loop if updateCurrentUser returns void

16 replies