1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-05 04:37:38 +02:00

Ignore errors on 5.3 as well

This commit is contained in:
Jordi Boggiano
2013-10-31 22:38:24 +01:00
parent a1b3bf7c2a
commit da4bf80702

View File

@@ -97,6 +97,6 @@ class LineFormatter extends NormalizerFormatter
return $this->toJson($data, true);
}
return str_replace('\\/', '/', json_encode($data));
return str_replace('\\/', '/', @json_encode($data));
}
}