@igea/oac_backend 1.0.83 → 1.0.84

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@igea/oac_backend",
3
- "version": "1.0.83",
3
+ "version": "1.0.84",
4
4
  "description": "Backend service for the OAC project",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -236,6 +236,7 @@ router.get('/form/lock/:row_id/:client_uuid', (req, res) => {
236
236
  message: success ? null : 'Record is locked by another user'
237
237
  });
238
238
  }).catch((err)=>{
239
+ console.log(err)
239
240
  res.status(500).json({
240
241
  success: false,
241
242
  data: null,
@@ -35,6 +35,7 @@ class EditLocks {
35
35
  console.log(reserver_uuid)
36
36
  resolve(reserver_uuid == client_uuid)
37
37
  }catch(e){
38
+ console.log(e)
38
39
  reject(e)
39
40
  }
40
41
  });