Skip to content

Commit

Permalink
remove log analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenjohanson committed Dec 23, 2024
1 parent cbcb621 commit 9ecabd9
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions teammapper-backend/src/map/services/maps.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,6 @@ export class MapsService {
}
}

this.typeormAnalyzer.logAnalysis();

return newMap
}

Expand Down Expand Up @@ -259,8 +257,6 @@ export class MapsService {
Object.assign(serverNode, mergedNode);
try {
await this.nodesRepository.update({ id: serverNode.id, nodeMapId: mapId }, serverNode);

this.typeormAnalyzer.logAnalysis();
} catch (error) {
this.logger.warn(`${error.constructor.name} diffUpdatedCallback(): Failed to update node ${serverNode.id}: ${error}`);
return Promise.reject(error);
Expand All @@ -280,8 +276,6 @@ export class MapsService {

const returnValue = await this.nodesRepository.remove(existingNode);

this.typeormAnalyzer.logAnalysis();

return returnValue;
}));
};
Expand Down

0 comments on commit 9ecabd9

Please sign in to comment.