diff --git a/lib/platform/azure/index.ts b/lib/platform/azure/index.ts
index 3ef825b2851dbc9167ef5d27180466eb8a21bddb..9768e68139a81d07fd4849d116729ccb6647af40 100644
--- a/lib/platform/azure/index.ts
+++ b/lib/platform/azure/index.ts
@@ -530,7 +530,7 @@ export async function ensureComment({
       config.repoId,
       number
     );
-    logger.debug(
+    logger.info(
       { repository: config.repository, issueNo: number, topic },
       'Comment added'
     );
diff --git a/lib/platform/bitbucket-server/index.ts b/lib/platform/bitbucket-server/index.ts
index 121a92d9c41d7f4941c4ec0fb157ecb68c4cd133..1c8a70c1aeabf92a9eb4db2466fd33e876526ca1 100644
--- a/lib/platform/bitbucket-server/index.ts
+++ b/lib/platform/bitbucket-server/index.ts
@@ -847,7 +847,7 @@ export async function ensureComment({
     }
     if (!commentId) {
       await addComment(number, body);
-      logger.debug(
+      logger.info(
         { repository: config.repository, prNo: number, topic },
         'Comment added'
       );
diff --git a/lib/platform/bitbucket/comments.ts b/lib/platform/bitbucket/comments.ts
index 3c038ecef049fca6a2f9a011b38350eda38acdcf..d4f4c8951c2186e50ac3040301948bdcd22dae37 100644
--- a/lib/platform/bitbucket/comments.ts
+++ b/lib/platform/bitbucket/comments.ts
@@ -95,7 +95,7 @@ export async function ensureComment({
     }
     if (!commentId) {
       await addComment(config, prNo, body);
-      logger.debug(
+      logger.info(
         { repository: config.repository, prNo, topic },
         'Comment added'
       );
diff --git a/lib/platform/gitea/index.ts b/lib/platform/gitea/index.ts
index 787d551091e206183b653ddf6f80247a42b8bfdd..b6ac40abeb90a287ada645941c7dab0e7678c643 100644
--- a/lib/platform/gitea/index.ts
+++ b/lib/platform/gitea/index.ts
@@ -768,7 +768,7 @@ const platform: Platform = {
       // Create a new comment if no match has been found, otherwise update if necessary
       if (!comment) {
         const c = await helper.createComment(config.repository, issue, body);
-        logger.debug(
+        logger.info(
           { repository: config.repository, issue, comment: c.id },
           'Comment added'
         );
diff --git a/lib/platform/github/index.ts b/lib/platform/github/index.ts
index cfbcc1f2f3f65dfb1bc311986a7a2175cba31735..dc9fff7a31aff184a915ac9cc07149e64ed2b056 100644
--- a/lib/platform/github/index.ts
+++ b/lib/platform/github/index.ts
@@ -1586,7 +1586,7 @@ export async function ensureComment({
     }
     if (!commentId) {
       await addComment(number, body);
-      logger.debug(
+      logger.info(
         { repository: config.repository, issueNo: number, topic },
         'Comment added'
       );