Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop to Release #182

Merged
merged 3 commits into from
May 10, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: eliminar log innecesario
  • Loading branch information
Daniel Aguazaco committed May 5, 2022
commit 0f9a54ee475ea19764181dee527892fe7033d517
2 changes: 0 additions & 2 deletions helpers/movimientoHelper/movimiento.helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package movimientohelper

import (
"github.com/astaxie/beego"
"github.com/astaxie/beego/logs"

models_movimientos "github.com/udistrital/movimientos_crud/models"
"github.com/udistrital/utils_oas/request"
Expand Down Expand Up @@ -63,7 +62,6 @@ func CrearMovimiento(movimientocreado []models_movimientos.CuentasMovimientoProc
}()

urlcrearmovimiento := beego.AppConfig.String("movimientosCrudService") + "movimiento_detalle/crearMovimientosDetalle/"
logs.Debug("----------------------------------->>>>>>>>>>>>>>" + urlcrearmovimiento)
if err := request.SendJson(urlcrearmovimiento, "POST", &movimiento, movimientocreado); err != nil {
return movimiento, map[string]interface{}{
"funcion": "CrearMovimiento - request.SendJson(urlcrearmovimiento, \"POST\", &respuestaPeticion, movimientocreado)",
Expand Down