utn-cli 2.0.14 → 2.0.15
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
|
@@ -33,7 +33,7 @@ Router.get("/ConsentimientoInformado", async (solicitud, respuesta, next) => {
|
|
|
33
33
|
return respuesta.json({ body: await ConsentimientoInformado.ConsentimientoInformado(Datos), error: undefined });
|
|
34
34
|
} catch (error) {
|
|
35
35
|
const MensajeDeError = "No fue posible determiniar el consentimiento informado";
|
|
36
|
-
console.error(new ManejadorDeErrores(
|
|
36
|
+
console.error(new ManejadorDeErrores(MensajeDeError, ManejadorDeErrores.obtenerNumeroDeLinea(), true, `Dirección IP: ${solicitud.ip}`));
|
|
37
37
|
return respuesta.status(500).json({ body: undefined, error: MensajeDeError });
|
|
38
38
|
}
|
|
39
39
|
}
|