diff --git a/dist/index.js b/dist/index.js
index 4284a52..5905299 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -1372,6 +1372,7 @@ class GitHubHelper {
                 const treeObjects = yield Promise.all(commit.changes.map((_a) => __awaiter(this, [_a], void 0, function* ({ path, mode, status, dstSha }) {
                     if (mode === '160000') {
                         // submodule
+                        core.info(`Creating tree object for submodule commit at '${path}'`);
                         return {
                             path,
                             mode,
@@ -1385,13 +1386,13 @@ class GitHubHelper {
                             try {
                                 const { data: blob } = yield blobCreationLimit(() => this.octokit.rest.git.createBlob(Object.assign(Object.assign({}, repository), { content: utils.readFileBase64([repoPath, path]), encoding: 'base64' })));
                                 sha = blob.sha;
-                                core.info(`Created blob for file '${path}'`);
                             }
                             catch (error) {
                                 core.error(`Error creating blob for file '${path}': ${utils.getErrorMessage(error)}`);
                                 throw error;
                             }
                         }
+                        core.info(`Creating tree object for blob at '${path}' with status '${status}'`);
                         return {
                             path,
                             mode,
diff --git a/src/github-helper.ts b/src/github-helper.ts
index b34df59..82a9296 100644
--- a/src/github-helper.ts
+++ b/src/github-helper.ts
@@ -258,6 +258,7 @@ export class GitHubHelper {
         commit.changes.map(async ({path, mode, status, dstSha}) => {
           if (mode === '160000') {
             // submodule
+            core.info(`Creating tree object for submodule commit at '${path}'`)
             return <TreeObject>{
               path,
               mode,
@@ -276,7 +277,6 @@ export class GitHubHelper {
                   })
                 )
                 sha = blob.sha
-                core.info(`Created blob for file '${path}'`)
               } catch (error) {
                 core.error(
                   `Error creating blob for file '${path}': ${utils.getErrorMessage(error)}`
@@ -284,6 +284,9 @@ export class GitHubHelper {
                 throw error
               }
             }
+            core.info(
+              `Creating tree object for blob at '${path}' with status '${status}'`
+            )
             return <TreeObject>{
               path,
               mode,