1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-06 21:26:43 +02:00

Merge pull request #31 from weaverryan/stream_exception_language

Trying to carefully improve the language on a common exception message
This commit is contained in:
Jordi Boggiano
2011-05-16 13:44:34 -07:00

View File

@@ -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']);