fix(api): correct error log message route in /v1/repair-uidhmac

This commit is contained in:
Jonathan Barrow 2025-12-27 22:00:59 -05:00
parent 9ede5b5c1e
commit e8c5008336
No known key found for this signature in database
GPG Key ID: 2A7DAA6DED5A77E5

View File

@ -59,7 +59,7 @@ router.post('/', async (request: express.Request, response: express.Response): P
}
});
} catch (error: any) {
LOG_ERROR('[POST] /v1/register: ' + error);
LOG_ERROR('[POST] /v1/repair-uidhmac: ' + error);
if (error.stack) {
console.error(error.stack);
}