There was an error while loading. Please reload this page.
2 parents cc8b752 + 042aa5a commit 31d4f07Copy full SHA for 31d4f07
src/VCR/Videorecorder.php
@@ -232,7 +232,10 @@ public function handleRequest(Request $request)
232
throw new \LogicException(
233
"The request does not match a previously recorded request and the 'mode' is set to '{$this->config->getMode()}'. "
234
. "If you want to send the request anyway, make sure your 'mode' is set to 'new_episodes'. "
235
- . "Please see http://php-vcr.github.io/documentation/configuration/#record-modes.");
+ . "Please see http://php-vcr.github.io/documentation/configuration/#record-modes."
236
+ ."\nCassette: ".$this->cassette->getName()
237
+ ."\nRequest: ".print_r($request->toArray(), true)
238
+ );
239
}
240
241
$this->disableLibraryHooks();
0 commit comments