Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
atdb-ldv
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
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ASTRON SDC
atdb-ldv
Merge requests
!296
SDC 971 handle moved inspectionplots
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
SDC 971 handle moved inspectionplots
SDC-971-handle-moved-inspectionplots
into
master
Overview
0
Commits
3
Pipelines
1
Changes
4
Merged
SDC 971 handle moved inspectionplots
Nico Vermaas
requested to merge
SDC-971-handle-moved-inspectionplots
into
master
May 11, 2023
Overview
0
Commits
3
Pipelines
1
Changes
4
uses a separate token and path translation for the new location of the moved plots and logs
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
632b345c
3 commits,
May 11, 2023
4 files
+
41
−
98
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
atdb/atdb/settings/base.py
+
2
−
7
View file @ 632b345c
Edit in single-file editor
Open in Web IDE
Show full file
@@ -156,17 +156,12 @@ LOGGING = {
'
class
'
:
'
logging.StreamHandler
'
,
'
formatter
'
:
'
my_formatter
'
,
},
'
my_file_handler
'
:
{
'
level
'
:
'
INFO
'
,
'
class
'
:
'
logging.FileHandler
'
,
'
formatter
'
:
'
my_formatter
'
,
'
filename
'
:
'
logs/atdb.log
'
},
},
'
loggers
'
:
{
'
taskdatabase
'
:
{
#'handlers': ['my_handler','mail_admins'],
'
handlers
'
:
[
'
my_handler
'
,
'
my_file_handler
'
],
'
handlers
'
:
[
'
my_handler
'
],
'
level
'
:
'
INFO
'
,
},
'
django
'
:
{
Loading