From 7b78b14d1d7b93d11d59ffb65d2565b85cc5d415 Mon Sep 17 00:00:00 2001 From: leonardo Date: Wed, 11 Jan 2017 17:07:17 +0000 Subject: [PATCH] bug #7788 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@64819 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/service/impl/PuntoVentaServiceImpl.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/com/rjconsultores/ventaboletos/service/impl/PuntoVentaServiceImpl.java b/src/com/rjconsultores/ventaboletos/service/impl/PuntoVentaServiceImpl.java index 2b7fdd916..143a6b524 100644 --- a/src/com/rjconsultores/ventaboletos/service/impl/PuntoVentaServiceImpl.java +++ b/src/com/rjconsultores/ventaboletos/service/impl/PuntoVentaServiceImpl.java @@ -168,7 +168,7 @@ public class PuntoVentaServiceImpl implements PuntoVentaService { String strFornecedor = ""; try{ strFornecedor = iag.getCodigoFornecedorWithIDWS(entidad.getNumPuntoVenta().toString()); - log.debug("Retorno consulta fornecedor ws: " + strFornecedor); + log.info("Retorno consulta fornecedor ws: " + strFornecedor); } catch (RemoteException e) { log.error("", e.toString()); } @@ -214,7 +214,7 @@ public class PuntoVentaServiceImpl implements PuntoVentaService { fornecedor.setIDWS(entidad.getNumPuntoVenta()); try{ String retornoAG = iag.incluiFornecedor(fornecedor); - log.debug(retornoAG); + log.info(retornoAG); } catch (RemoteException e) { entidad.setIndIntegradoAG(false); entidad.setMotivoNaoIntegradoAG(e.getMessage()); @@ -240,7 +240,7 @@ public class PuntoVentaServiceImpl implements PuntoVentaService { String cliStr = ""; try{ cliStr = iag.getClienteWithIDWS(entidad.getNumPuntoVenta().toString()); - log.debug("Retorno consulta cliente ws: " + cliStr); + log.info("Retorno consulta cliente ws: " + cliStr); } catch (RemoteException e) { log.error("", e.toString()); } @@ -308,7 +308,7 @@ public class PuntoVentaServiceImpl implements PuntoVentaService { cli.getServicosCliente().setCRS_Codigo(""); try{ String retornoAG = iag.incluiCliente(cli); - log.debug(retornoAG); + log.info(retornoAG); } catch (RemoteException e) { entidad.setIndIntegradoAG(false); entidad.setMotivoNaoIntegradoAG(e.getMessage());