diff --git a/dist/index.js b/dist/index.js
index 13f3e36..f4af77a 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -641,7 +641,6 @@ class GitCommandManager {
                 args.push('--no-tags');
             }
             args.push('--prune', '--no-recurse-submodules');
-            console.log(`options show progress = ${options.showProgress}`);
             if (options.showProgress) {
                 args.push('--progress');
             }
@@ -1748,7 +1747,6 @@ function getInputs() {
         result.showProgress =
             (core.getInput('show-progress') || 'true').toUpperCase() === 'TRUE';
         core.debug(`show progress = ${result.showProgress}`);
-        console.log(`show progress = ${result.showProgress}`);
         // LFS
         result.lfs = (core.getInput('lfs') || 'false').toUpperCase() === 'TRUE';
         core.debug(`lfs = ${result.lfs}`);
diff --git a/src/git-command-manager.ts b/src/git-command-manager.ts
index 41bc394..7752cfa 100644
--- a/src/git-command-manager.ts
+++ b/src/git-command-manager.ts
@@ -255,7 +255,6 @@ class GitCommandManager {
     }
 
     args.push('--prune', '--no-recurse-submodules')
-    console.log(`options show progress = ${options.showProgress}`)
     if (options.showProgress) {
       args.push('--progress')
     }
diff --git a/src/input-helper.ts b/src/input-helper.ts
index 6385938..c76bed5 100644
--- a/src/input-helper.ts
+++ b/src/input-helper.ts
@@ -109,7 +109,6 @@ export async function getInputs(): Promise<IGitSourceSettings> {
   result.showProgress =
     (core.getInput('show-progress') || 'true').toUpperCase() === 'TRUE'
   core.debug(`show progress = ${result.showProgress}`)
-  console.log(`show progress = ${result.showProgress}`)
   // LFS
   result.lfs = (core.getInput('lfs') || 'false').toUpperCase() === 'TRUE'
   core.debug(`lfs = ${result.lfs}`)