From 3caa8f7fa3c05fe0ca8a22445bc18ccad6a02bb8 Mon Sep 17 00:00:00 2001 From: andrewblaney Date: Mon, 28 Jul 2025 14:15:43 +0100 Subject: [PATCH] update logging --- .changeset/busy-steaks-march.md | 5 +++++ src/index.js | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 .changeset/busy-steaks-march.md diff --git a/.changeset/busy-steaks-march.md b/.changeset/busy-steaks-march.md new file mode 100644 index 0000000..e297d35 --- /dev/null +++ b/.changeset/busy-steaks-march.md @@ -0,0 +1,5 @@ +--- +"@team-plain/cli": patch +--- + +Update index-sitemap logging diff --git a/src/index.js b/src/index.js index bf490b5..59232f4 100755 --- a/src/index.js +++ b/src/index.js @@ -72,7 +72,9 @@ program if (res.error) { handleError(res.error.message, res.error.requestId); } else { - console.log(`✅ Successfully indexed sitemap ${url}`); + console.log( + `✅ Successfully indexed sitemap ${url} - The sitemap will be indexed and knowledge sources will be available in Plain. See https://plain.support.site/article/plain-ai-knowledge-sources for more information.`, + ); } });