Просмотр исходного кода

Merge pull request #31 from weaverryan/stream_exception_language

Trying to carefully improve the language on a common exception message
Jordi Boggiano 14 лет назад
Родитель
Сommit
5b88a7a67c
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/Monolog/Handler/StreamHandler.php

+ 1 - 1
src/Monolog/Handler/StreamHandler.php

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