We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2db53a9 commit cc6e7c6Copy full SHA for cc6e7c6
packages/core/src/server/middlewares.ts
@@ -61,7 +61,7 @@ export const getRequestLoggerMiddleware: () => Promise<Connect.NextHandleFunctio
61
62
// :status :method :url :total-time ms
63
logger.debug(
64
- `${statusColor(status)} ${method} ${color.gray(url)} ${color.gray(
+ `${statusColor(status)} ${method} ${url} ${color.dim(
65
`${totalTime.toFixed(3)} ms`,
66
)}`,
67
);
@@ -249,9 +249,7 @@ export const getHtmlFallbackMiddleware: (params: {
249
250
if (logger.level === 'verbose') {
251
252
- `${req.method} ${color.gray(
253
- `${req.url} ${color.yellow('fallback')} to ${newUrl}`,
254
- )}`,
+ ` ${req.method} ${req.url} ${color.yellow('fallback to')} ${newUrl}`,
255
256
}
257
0 commit comments