Skip to content

Commit

Permalink
Enabled debug mode. (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
OGKevin committed Apr 6, 2018
1 parent 36f1aa8 commit 1dcf9c1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@ php:
- 7.2
install: composer install
before_script:
- sudo apt-get install -y language-pack-en-base
- sudo LC_ALL=en_US.UTF-8 add-apt-repository ppa:ondrej/php
- apt update
- sudo apt-get build-dep curl
- sudo apt-get install php-curl
- pushd /tmp
- wget https://curl.haxx.se/download/curl-7.59.0.tar.bz2
- tar -xvjf curl-7.59.0.tar.bz2
Expand Down
2 changes: 1 addition & 1 deletion src/Http/ApiClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ private function determineRequestOptions($body, array $customHeaders): array
return [
self::OPTION_HEADERS => $headers,
self::OPTION_BODY => $this->determineBodyString($body),
self::OPTION_DEBUG => false,
self::OPTION_DEBUG => true,
self::OPTION_HTTP_ERRORS => false,
];
}
Expand Down

0 comments on commit 1dcf9c1

Please sign in to comment.