Fixed a bug that used a misspelled stdout stream for StreamHandler

This commit is contained in:
Vassyli
2020-12-31 15:51:26 +01:00
committed by Basilius Sauter
parent fdb53972d2
commit dd074a8bea
+1 -1
View File
@@ -144,7 +144,7 @@ abstract class ModelTestCase extends TestCase
if ($this->useSilentHandler()) {
$logger->pushHandler(new NullHandler());
} else {
$logger->pushHandler(new StreamHandler("php://stdout."));
$logger->pushHandler(new StreamHandler("php://stdout"));
}
// Create a Game object for use in these tests.