Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
Ingestion Workflow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
OSDU
OSDU Data Platform
Data Flow
Data Ingestion
Ingestion Workflow
Merge requests
!169
Added logback into GCP IT module (GONRG-3445)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Added logback into GCP IT module (GONRG-3445)
gcp-int-tests-logs
into
master
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Riabokon Stanislav(EPAM)[GCP]
requested to merge
gcp-int-tests-logs
into
master
3 years ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
Type of change
Bug Fix
Feature
Does this introduce a change in the core logic?
[NO]
Does this introduce a change in the cloud provider implementation, if so which cloud?
AWS
Azure
GCP
IBM
Does this introduce a breaking change?
[NO]
What is the current behavior?
The id_token is exposed in int-tests logs
What is the new/expected behavior?
The id_token logs are disabled
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
6f615705
1 commit,
3 years ago
1 file
+
13
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
testing/workflow-test-gcp/src/resources/logback-test.xml
0 → 100644
+
13
−
0
Options
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include
resource=
"org/springframework/boot/logging/logback/defaults.xml"
/>
<appender
name=
"CONSOLE"
class=
"ch.qos.logback.core.ConsoleAppender"
>
<encoder>
<pattern>
%yellow([%thread]) %highlight(| %-5level |) %green(%d) %cyan(| %logger{15} |) %highlight(%msg) %n
</pattern>
<charset>
utf8
</charset>
</encoder>
</appender>
<root
level=
"INFO"
>
<appender-ref
ref=
"CONSOLE"
/>
</root>
</configuration>
Loading