Skip to content

Commit

Permalink
Remove extra space in envionment log (vercel#73108)
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk authored Nov 22, 2024
1 parent bfcbac9 commit f34e02d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/next/src/server/lib/app-info-log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function logStartInfo({
if (networkUrl) {
Log.bootstrap(`- Network: ${networkUrl}`)
}
if (envInfo?.length) Log.bootstrap(` - Environments: ${envInfo.join(', ')}`)
if (envInfo?.length) Log.bootstrap(`- Environments: ${envInfo.join(', ')}`)

if (expFeatureInfo?.length) {
Log.bootstrap(`- Experiments (use with caution):`)
Expand Down

0 comments on commit f34e02d

Please sign in to comment.