From a6f7cd86799e4de361999898bb72bf2096c936c5 Mon Sep 17 00:00:00 2001 From: Srushti Rane Date: Fri, 20 Dec 2024 08:17:45 +0530 Subject: [PATCH 1/3] fixed typo in the createInitializationLogger Signed-off-by: Srushti Rane --- .../backend-app-api/src/wiring/createInitializationLogger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend-app-api/src/wiring/createInitializationLogger.ts b/packages/backend-app-api/src/wiring/createInitializationLogger.ts index de323f914b..2a472dec5b 100644 --- a/packages/backend-app-api/src/wiring/createInitializationLogger.ts +++ b/packages/backend-app-api/src/wiring/createInitializationLogger.ts @@ -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() { From 02534c762cf8cc79e3da1cc88f9d04f2783e2685 Mon Sep 17 00:00:00 2001 From: Srushti Rane Date: Fri, 20 Dec 2024 08:58:54 +0530 Subject: [PATCH 2/3] added changesets for the fix Signed-off-by: Srushti Rane --- .changeset/lemon-students-care.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .changeset/lemon-students-care.md diff --git a/.changeset/lemon-students-care.md b/.changeset/lemon-students-care.md new file mode 100644 index 0000000000..ee5f40194c --- /dev/null +++ b/.changeset/lemon-students-care.md @@ -0,0 +1,7 @@ +--- +'@backstage/backend-app-api': patch +--- + +[Fix] Corrected spelling mistake in createInitializationLogger + +Fixed a typo error in the createInitializationLogger.ts file where “thew” was changed to “threw”. This correction improves clarity in the logging From c8926530b55cba734c94eaf57abd104b24eb8803 Mon Sep 17 00:00:00 2001 From: Ben Lambert Date: Fri, 20 Dec 2024 08:16:49 +0100 Subject: [PATCH 3/3] Correct spelling mistake in error message Signed-off-by: blam --- .changeset/lemon-students-care.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.changeset/lemon-students-care.md b/.changeset/lemon-students-care.md index ee5f40194c..951430f06a 100644 --- a/.changeset/lemon-students-care.md +++ b/.changeset/lemon-students-care.md @@ -2,6 +2,4 @@ '@backstage/backend-app-api': patch --- -[Fix] Corrected spelling mistake in createInitializationLogger - -Fixed a typo error in the createInitializationLogger.ts file where “thew” was changed to “threw”. This correction improves clarity in the logging +Corrected spelling mistake in error message