|
@@ -64,7 +64,7 @@ class StreamHandler extends AbstractProcessingHandler
|
|
|
$this->stream = @fopen($this->url, 'a');
|
|
$this->stream = @fopen($this->url, 'a');
|
|
|
if (!is_resource($this->stream)) {
|
|
if (!is_resource($this->stream)) {
|
|
|
$this->stream = null;
|
|
$this->stream = null;
|
|
|
- throw new \UnexpectedValueException('The stream could not be opened, "'.$this->url.'" may be an invalid url.');
|
|
|
|
|
|
|
+ throw new \UnexpectedValueException(sprintf('The stream or file "%s" could not be opened; it may be invalid or not writable.', $this->url));
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
fwrite($this->stream, (string) $record['message']);
|
|
fwrite($this->stream, (string) $record['message']);
|