Skip to content

Commit

Permalink
Merge pull request #99 from silinternational/develop
Browse files Browse the repository at this point in the history
Release 3.3.1 - fix console log output
  • Loading branch information
briskt authored May 12, 2020
2 parents 56ec579 + 913d5ff commit 289d3b1
Show file tree
Hide file tree
Showing 7 changed files with 1,239 additions and 620 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [3.3.1] - 2020-05-12
### Fixed
- Application logs from console scripts sent to stdout

## [3.3.0] - 2020-04-23
### Added
- Added stderr/stdout logging
Expand Down Expand Up @@ -167,7 +171,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added
- First release.

[Unreleased]: https://github.com/silinternational/idp-id-sync/compare/3.3.0...develop
[Unreleased]: https://github.com/silinternational/idp-id-sync/compare/3.3.1...develop
[3.3.1]: https://github.com/silinternational/idp-id-sync/compare/3.3.0...3.3.1
[3.3.0]: https://github.com/silinternational/idp-id-sync/compare/3.2.0...3.3.0
[3.2.0]: https://github.com/silinternational/idp-id-sync/compare/3.1.0...3.2.0
[3.1.0]: https://github.com/silinternational/idp-id-sync/compare/3.0.1...3.1.0
Expand Down
3 changes: 3 additions & 0 deletions application/common/config/main.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,15 @@
'logVars' => [],
'categories' => ['application'],
'prefix' => $logPrefix,
'exportInterval' => 1,
],
[
'class' => JsonStreamTarget::class,
'url' => 'php://stderr',
'levels' => ['error', 'warning'],
'logVars' => [],
'prefix' => $logPrefix,
'exportInterval' => 1,
],
[
'class' => EmailServiceTarget::class,
Expand Down Expand Up @@ -125,6 +127,7 @@
'idp_name' => $idpName,
]);
},
'exportInterval' => 1,
],
],
],
Expand Down
Loading

0 comments on commit 289d3b1

Please sign in to comment.