debugging

This commit is contained in:
Dennis Eichhorn 2022-09-30 19:02:07 +02:00
parent 06c15c4a09
commit 6459e61a63
2 changed files with 6 additions and 1 deletions

View File

@ -112,7 +112,7 @@ jobs:
- name: Setup Composer
run: composer install
- name: phpunit
run: vendor/bin/phpunit --coverage-clover tests/coverage.xml --configuration tests/phpunit_no_coverage.xml --testdox -v
run: vendor/bin/phpunit --coverage-clover tests/coverage.xml --configuration tests/phpunit_no_coverage.xml
static-tests:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'NO_CI')"

View File

@ -19,6 +19,11 @@ use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
use phpOMS\DataStorage\Session\HttpSession;
use phpOMS\Log\FileLogger;
var_dump($_SERVER);
var_dump(php_uname());
var_dump(getenv());
var_dump(ini_get_all());
// Initialize file logger with correct path
$tmp = FileLogger::getInstance(__DIR__ . '/../Logs');