Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tango
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira issues
Open Jira
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LOFAR2.0
tango
Commits
2892211f
Commit
2892211f
authored
3 years ago
by
Jan David Mol
Browse files
Options
Downloads
Patches
Plain Diff
L2SS-244
: Configure logging to actually see log lines in 'docker logs device-xyz'
parent
ecf4c781
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!56
L2SS-244: Expose the SSTs in MPs
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
devices/APSCTL.py
+5
-0
5 additions, 0 deletions
devices/APSCTL.py
devices/PCC.py
+5
-0
5 additions, 0 deletions
devices/PCC.py
devices/SDP.py
+5
-0
5 additions, 0 deletions
devices/SDP.py
devices/SNMP.py
+5
-0
5 additions, 0 deletions
devices/SNMP.py
devices/Statistics.py
+5
-0
5 additions, 0 deletions
devices/Statistics.py
with
25 additions
and
0 deletions
devices/APSCTL.py
+
5
−
0
View file @
2892211f
...
...
@@ -187,6 +187,11 @@ class APSCTL(hardware_device):
# ----------
def
main
(
args
=
None
,
**
kwargs
):
"""
Main function of the SDP module.
"""
from
util.lofar_logging
import
configure_logger
import
logging
configure_logger
(
logging
.
getLogger
())
return
run
((
APSCTL
,),
args
=
args
,
**
kwargs
)
...
...
This diff is collapsed.
Click to expand it.
devices/PCC.py
+
5
−
0
View file @
2892211f
...
...
@@ -243,6 +243,11 @@ class PCC(hardware_device):
# ----------
def
main
(
args
=
None
,
**
kwargs
):
"""
Main function of the PCC module.
"""
from
util.lofar_logging
import
configure_logger
import
logging
configure_logger
(
logging
.
getLogger
())
return
run
((
PCC
,),
args
=
args
,
**
kwargs
)
...
...
This diff is collapsed.
Click to expand it.
devices/SDP.py
+
5
−
0
View file @
2892211f
...
...
@@ -167,6 +167,11 @@ class SDP(hardware_device):
# ----------
def
main
(
args
=
None
,
**
kwargs
):
"""
Main function of the SDP module.
"""
from
util.lofar_logging
import
configure_logger
import
logging
configure_logger
(
logging
.
getLogger
())
return
run
((
SDP
,),
args
=
args
,
**
kwargs
)
...
...
This diff is collapsed.
Click to expand it.
devices/SNMP.py
+
5
−
0
View file @
2892211f
...
...
@@ -110,6 +110,11 @@ class SNMP(hardware_device):
# ----------
def
main
(
args
=
None
,
**
kwargs
):
"""
Main function of the PCC module.
"""
from
util.lofar_logging
import
configure_logger
import
logging
configure_logger
(
logging
.
getLogger
())
return
run
((
SNMP
,),
args
=
args
,
**
kwargs
)
...
...
This diff is collapsed.
Click to expand it.
devices/Statistics.py
+
5
−
0
View file @
2892211f
...
...
@@ -99,6 +99,11 @@ class Statistics(hardware_device):
# ----------
def
main
(
args
=
None
,
**
kwargs
):
"""
Main function of the Statistics Device module.
"""
from
util.lofar_logging
import
configure_logger
import
logging
configure_logger
(
logging
.
getLogger
())
return
run
((
Statistics
,),
args
=
args
,
**
kwargs
)
...
...
This diff is collapsed.
Click to expand it.
Jan David Mol
@mol
mentioned in commit
1c8c3ef9
·
3 years ago
mentioned in commit
1c8c3ef9
mentioned in commit 1c8c3ef9f1a323e95188873ad0f8e8749c3f57e8
Toggle commit list
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