Skip to content

Commit fd59ca1

Browse files
committed
Log OIDC messages to security log
All log messages of this package are now logged to Flow's security log (`Security.log`) instead of using the standard system log (`System.log`). Resolves #47
1 parent 2c3dc6f commit fd59ca1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Classes/Authentication/OpenIdConnectEntryPoint.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
final class OpenIdConnectEntryPoint extends AbstractEntryPoint
1818
{
1919
/**
20-
* @Flow\Inject
20+
* @Flow\Inject(name="Neos.Flow:SecurityLogger")
2121
* @var LoggerInterface
2222
*/
2323
protected $logger;

Classes/Authentication/OpenIdConnectProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ final class OpenIdConnectProvider extends AbstractProvider
3939
protected $policyService;
4040

4141
/**
42-
* @Flow\Inject
42+
* @Flow\Inject(name="Neos.Flow:SecurityLogger")
4343
* @var LoggerInterface
4444
*/
4545
protected $logger;

Classes/OpenIdConnectClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ final class OpenIdConnectClient
5555
protected $httpClient;
5656

5757
/**
58-
* @Flow\Inject
58+
* @Flow\Inject(name="Neos.Flow:SecurityLogger")
5959
* @var LoggerInterface
6060
*/
6161
protected $logger;

0 commit comments

Comments
 (0)