mirror of
https://github.com/SyncrowIOT/backend.git
synced 2026-03-10 20:31:43 +00:00
remove console logs
This commit is contained in:
@ -241,9 +241,7 @@ export class SpaceService {
|
||||
'subspaces.productAllocations',
|
||||
],
|
||||
});
|
||||
console.log('spaceObject :>> ', space);
|
||||
const clonedSpace = structuredClone(space);
|
||||
console.log(`creating duplicate for space ${clonedSpace.spaceName}`);
|
||||
const newSpace = queryRunner.manager.create(SpaceEntity, {
|
||||
...clonedSpace,
|
||||
spaceName: newSpaceName || clonedSpace.spaceName,
|
||||
@ -254,7 +252,6 @@ export class SpaceService {
|
||||
uuid: uuidV4(),
|
||||
});
|
||||
|
||||
console.log(`handling space ${newSpace.spaceName} allocations`);
|
||||
if (clonedSpace.productAllocations?.length) {
|
||||
newSpace.productAllocations = this.copySpaceAllocations(
|
||||
newSpace,
|
||||
@ -262,7 +259,6 @@ export class SpaceService {
|
||||
queryRunner,
|
||||
);
|
||||
}
|
||||
console.log(`handling space ${newSpace.spaceName} subspaces`);
|
||||
if (clonedSpace.subspaces?.length) {
|
||||
newSpace.subspaces = this.copySpaceSubspaces(
|
||||
newSpace,
|
||||
@ -272,7 +268,6 @@ export class SpaceService {
|
||||
}
|
||||
const savedSpace = await queryRunner.manager.save(newSpace);
|
||||
|
||||
console.log(`handling space ${newSpace.spaceName} children`);
|
||||
if (clonedSpace.children?.length) {
|
||||
for (const child of clonedSpace.children) {
|
||||
if (child.disabled) continue;
|
||||
|
||||
Reference in New Issue
Block a user