Remove some logs

This commit is contained in:
Caleb Owens 2024-06-05 17:23:41 +02:00
parent ed3294a692
commit 5c5bda651a
No known key found for this signature in database

View File

@ -21,7 +21,6 @@
let snaphotLinesThreshold = project?.snapshot_lines_threshold || 20; // when undefined, the default is 20
let allowForcePushing = project?.ok_with_force_push;
let omitCertificateCheck = project?.omit_certificate_check;
console.log(project);
let useNewLocking = project?.use_new_locking || false;
const gitConfig = getContext(GitConfigService);
@ -98,7 +97,6 @@
}
async function setUseNewLocking(value: boolean) {
console.log(value);
project.use_new_locking = value;
await projectService.updateProject(project);
}