Skip to content

Commit

Permalink
[bootstrap-library] Refactored logger configuration (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed May 4, 2023
1 parent 72784e2 commit ebc8b9e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 0 additions & 4 deletions config/example.neon
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,10 @@ extensions:
fbDateTimeFactory : FastyBird\DateTimeFactory\DI\DateTimeFactoryExtension
fbJsonApi : FastyBird\JsonApi\DI\JsonApiExtension
fbSimpleAuth : FastyBird\SimpleAuth\DI\SimpleAuthExtension
fbBootstrapLibrary : FastyBird\Library\Bootstrap\DI\BootstrapExtension
fbMetadataLibrary : FastyBird\Library\Metadata\DI\MetadataExtension
fbExchangeLibrary : FastyBird\Library\Exchange\DI\ExchangeExtension
fbDevicesModule : FastyBird\Module\Devices\DI\DevicesExtension

services:
- {factory: Symfony\Component\Console\Application}

contributteTranslation:
locales:
default: en_US
Expand Down
1 change: 0 additions & 1 deletion tests/common.neon
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ extensions:
fbDateTimeFactory : FastyBird\DateTimeFactory\DI\DateTimeFactoryExtension
fbJsonApi : FastyBird\JsonApi\DI\JsonApiExtension
fbSimpleAuth : FastyBird\SimpleAuth\DI\SimpleAuthExtension
fbBootstrapLibrary : FastyBird\Library\Bootstrap\DI\BootstrapExtension
fbMetadataLibrary : FastyBird\Library\Metadata\DI\MetadataExtension
fbExchangeLibrary : FastyBird\Library\Exchange\DI\ExchangeExtension

Expand Down
4 changes: 4 additions & 0 deletions tools/phpunit-bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
define('FB_TEMP_DIR', __DIR__ . '/../var/tools/PHPUnit/tmp');
}

if (!defined('FB_LOGS_DIR')) {
define('FB_LOGS_DIR', __DIR__ . '/../var/tools/PHPUnit/logs');
}

if (@!include __DIR__ . '/../vendor/autoload.php') {
echo 'Install Tester using `composer update --dev`';
exit(1);
Expand Down

0 comments on commit ebc8b9e

Please sign in to comment.