Skip to content

Commit

Permalink
passage des logs SOAP en debug au lieu de info
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrousseauDigitick committed Feb 19, 2018
1 parent c803373 commit cc7a5b3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Digitick/Foundation/Fuse/Command/Soap/SoapCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ public function run()
*/
private function logSoapRequestAndResponse()
{
$this->info("Request:");
$this->info($this->soapClient->__getLastRequest());
$this->info("Response:");
$this->info($this->soapClient->__getLastResponse());
$this->debug("Request:");
$this->debug($this->soapClient->__getLastRequest());
$this->debug("Response:");
$this->debug($this->soapClient->__getLastResponse());
}
}

0 comments on commit cc7a5b3

Please sign in to comment.