diff --git a/src/Monolog/Handler/StreamHandler.php b/src/Monolog/Handler/StreamHandler.php index 7ea58e73..b631d080 100644 --- a/src/Monolog/Handler/StreamHandler.php +++ b/src/Monolog/Handler/StreamHandler.php @@ -64,7 +64,7 @@ class StreamHandler extends AbstractProcessingHandler $this->stream = @fopen($this->url, 'a'); if (!is_resource($this->stream)) { $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']);