Skip to content

Commit fa0ec1e

Browse files
committed
modify logs
1 parent 46b5bce commit fa0ec1e

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/features/import-projects/retroList/helper.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ export const manageProjectRemovals = async (
3030
const shouldKeepProjects = newList
3131
.filter((project) => project.prelimResult === "Keep")
3232
.map((project) => `${sourceConfig.source}-${project.id}`);
33-
console.log("shouldKeepProjects", shouldKeepProjects);
3433

3534
const existingProjectsIds = await dataSource
3635
.getRepository(Project)
@@ -41,8 +40,6 @@ export const manageProjectRemovals = async (
4140
.getMany()
4241
.then((projects) => projects.map((proj) => proj.id));
4342

44-
console.log("existingProjectsIds", existingProjectsIds);
45-
4643
const projectIdsToManipulate = existingProjectsIds.filter(
4744
(id) => !shouldKeepProjects.includes(id)
4845
);

src/features/import-projects/rf/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export const fetchRFProjectsByRound = async (round: number) => {
4545
offset = res.meta.next_offset;
4646
}
4747
} catch (error) {
48-
console.error(
48+
console.log(
4949
`Error fetching projects for round: ${round} at offset: ${offset}`,
5050
error
5151
);

0 commit comments

Comments
 (0)