Skip to content

Commit

Permalink
Remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
aks30 committed Sep 9, 2022
1 parent 781cadb commit 9cf7849
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion databaseQueries/projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ module.exports = class Projects {
try {

let projectDocument = await database.models.projects.create(projectData);
console.log("122",projectDocument)
return resolve(projectDocument);

} catch (error) {
Expand Down
8 changes: 4 additions & 4 deletions module/userProjects/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@ module.exports = class UserProjectsHelper {
let getUserProfileFromObservation = false;

if( bodyData && Object.keys(bodyData).length > 0 ) {
console.log("1166",bodyData)

if( bodyData.hasAcceptedTAndC ) {
projectCreation.data.hasAcceptedTAndC = bodyData.hasAcceptedTAndC;
}
Expand Down Expand Up @@ -1195,7 +1195,7 @@ module.exports = class UserProjectsHelper {
if( !entityInformation.success ) {
return resolve(entityInformation);
}
console.log("1198",entityInformation.data)

projectCreation.data["entityInformation"] = _entitiesMetaInformation(
entityInformation.data
)[0];
Expand All @@ -1204,7 +1204,7 @@ module.exports = class UserProjectsHelper {
}

}
console.log("1207",projectCreation.data)

projectCreation.data.status = CONSTANTS.common.STARTED;
projectCreation.data.lastDownloadedAt = new Date();

Expand Down Expand Up @@ -1263,7 +1263,7 @@ module.exports = class UserProjectsHelper {
}

projectCreation.data.userRoleInformation = userRoleInformation;
console.log("1266",projectCreation.data)

let project = await projectQueries.createProject(projectCreation.data);

if ( addReportInfoToSolution && project.solutionId ) {
Expand Down

0 comments on commit 9cf7849

Please sign in to comment.