Skip to content

Commit

Permalink
Merge pull request #34 from GitGuardian/salomevoltz/diverse-minor-imp…
Browse files Browse the repository at this point in the history
…rovements

chore(error): remove useless logging
  • Loading branch information
salome-voltz authored Oct 8, 2024
2 parents aa8622b + f5edc75 commit c4f2166
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/lib/ggshield-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ export function runGGShieldCommand(
if (workspace.workspaceFolders?.length || 0 > 0) {
options["cwd"] = workspace.workspaceFolders![0].uri.fsPath;
}
console.log(ggshieldPath, args, options);

let proc = spawnSync(ggshieldPath, args, options);

return proc;
Expand Down Expand Up @@ -227,7 +225,6 @@ export async function loginGGShield(
};

let args = ["auth", "login", "--method=web"];
console.log(ggshieldPath, args, options);

return new Promise((resolve) => {
const proc = spawn(ggshieldPath, args, options);
Expand Down

0 comments on commit c4f2166

Please sign in to comment.