chore: comment out getstarted log (#22327)

This commit is contained in:
Ben Irvin 2024-12-03 13:29:01 +01:00 committed by GitHub
parent 5dde62eabd
commit 2dcec09530
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,9 +5,10 @@
*/
module.exports = (config, { strapi }) => {
// This middleware is called on every request
// Add your own logic here.
return async (ctx, next) => {
strapi.log.info('In application test-middleware middleware.');
// strapi.log.info('In application test-middleware middleware.');
await next();
};