Skip to content

Commit

Permalink
fix: console.log to trace error in deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
frankpagan committed Dec 4, 2022
1 parent 118e019 commit 3feacd7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,11 @@ class CoCreateFileSystem {
})
if (!organization || !organization.document[0])
return res.send('Organization cannot be found using the domain: ' + hostname + ' in platformDB: ' + masterOrg);

console.log('file-server-----', organization.document[0], organization_id, organization_id.toString())

organization_id = organization.document[0]._id
}
console.log('file-server-----', organization.document[0], organization_id, organization_id.toString())
console.log('file-server-----', organization_id.toString())

let [url, parameters] = req.url.split("?");
Expand Down

0 comments on commit 3feacd7

Please sign in to comment.