Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
auth0-3484737
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
auth0-3484737
Commits
bc16e509
Commit
bc16e509
authored
2 months ago
by
dabblela
Browse files
Options
Downloads
Patches
Plain Diff
Use arguments when logging mappings
parent
bf925238
Branches
3.x
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Controller/AuthController.php
+2
-2
2 additions, 2 deletions
src/Controller/AuthController.php
with
2 additions
and
2 deletions
src/Controller/AuthController.php
+
2
−
2
View file @
bc16e509
...
...
@@ -791,11 +791,11 @@ class AuthController extends ControllerBase {
];
foreach
(
$mappings
as
$mapping
)
{
$this
->
auth0Logger
->
notice
(
'mapping
'
.
$mapping
);
$this
->
auth0Logger
->
notice
(
'mapping
: %mapping'
,
[
'%mapping'
=>
print_r
(
$mapping
,
TRUE
)]
);
$key
=
$mapping
[
1
];
if
(
in_array
(
$key
,
$skip_mappings
))
{
$this
->
auth0Logger
->
notice
(
'skipping mapping handled already by Auth0 module
'
.
$mapping
);
$this
->
auth0Logger
->
notice
(
'skipping mapping handled already by Auth0 module
: %mapping'
,
[
'%mapping'
=>
print_r
(
$mapping
,
TRUE
)]
);
}
else
{
$value
=
$userInfo
[
$mapping
[
0
]]
??
''
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment