Merge pull request #28244 from srushti-712/fix-typo-in-logger

fixed typo in the createInitializationLogger
This commit is contained in:
Ben Lambert
2024-12-20 09:51:51 +01:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/backend-app-api': patch
---
Corrected spelling mistake in error message
@@ -75,7 +75,7 @@ export function createInitializationLogger(
? `, waiting for ${starting.size} other plugins to finish before shutting down the process`
: '';
logger?.error(
`Plugin '${pluginId}' thew an error during startup${status}`,
`Plugin '${pluginId}' threw an error during startup${status}`,
);
},
onAllStarted() {