Browse Source

feat(nocodb): add error log

pull/5349/head
Wing-Kam Wong 1 year ago
parent
commit
3f3b9230da
  1. 1
      packages/nocodb/src/lib/controllers/hook.ctl.ts

1
packages/nocodb/src/lib/controllers/hook.ctl.ts

@ -59,6 +59,7 @@ export async function hookTest(req: Request<any, any>, res: Response) {
});
res.json({ msg: 'The hook has been tested successfully' });
} catch (e) {
console.error(e);
throw e;
}
}

Loading…
Cancel
Save