PMCORE-1335 ProcessMaker core should be use the native Laravel log mechanism.

This commit is contained in:
Roly Rudy Gutierrez Pinto
2020-08-10 17:11:55 -04:00
parent 061d4531f1
commit c865e65658
45 changed files with 731 additions and 1535 deletions

View File

@@ -45,14 +45,14 @@ class CustomizeFormatterTest extends TestCase
public function levelProviders()
{
return [
['emergency', 'production.EMERGENCY'],
['alert', 'production.ALERT'],
['critical', 'production.CRITICAL'],
['error', 'production.ERROR'],
['warning', 'production.WARNING'],
['notice', 'production.NOTICE'],
['info', 'production.INFO'],
['debug', 'production.DEBUG'],
['emergency', 'EMERGENCY'],
['alert', 'ALERT'],
['critical', 'CRITICAL'],
['error', 'ERROR'],
['warning', 'WARNING'],
['notice', 'NOTICE'],
['info', 'INFO'],
['debug', 'DEBUG'],
];
}