Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review 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
RadioObservatory
LOFAR
Commits
4090b246
Commit
4090b246
authored
6 years ago
by
Arno Schoenmakers
Browse files
Options
Downloads
Patches
Plain Diff
SW-356
: Adding log_prop for beamctl as well (thanks Auke!)
parent
13db77c9
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitattributes
+1
-0
1 addition, 0 deletions
.gitattributes
MAC/APL/PAC/ITRFBeamServer/src/CMakeLists.txt
+3
-0
3 additions, 0 deletions
MAC/APL/PAC/ITRFBeamServer/src/CMakeLists.txt
MAC/APL/PAC/ITRFBeamServer/src/beamctl.log_prop
+48
-0
48 additions, 0 deletions
MAC/APL/PAC/ITRFBeamServer/src/beamctl.log_prop
with
52 additions
and
0 deletions
.gitattributes
+
1
−
0
View file @
4090b246
...
...
@@ -2285,6 +2285,7 @@ MAC/APL/PAC/ICAL_Protocol/src/SpectralWindow.cc -text
MAC/APL/PAC/ICAL_Protocol/src/SubArray.cc -text
MAC/APL/PAC/ITRFBeamServer/src/StatCal.cc -text
MAC/APL/PAC/ITRFBeamServer/src/StatCal.h -text
MAC/APL/PAC/ITRFBeamServer/src/beamctl.log_prop -text
MAC/APL/PAC/ITRFBeamServer/src/iBeamServer.conf.in -text
MAC/APL/PAC/ITRFBeamServer/src/ibeamctl.conf.in -text
MAC/APL/PAC/ITRFBeamServer/test/AntennaField.conf -text
...
...
This diff is collapsed.
Click to expand it.
MAC/APL/PAC/ITRFBeamServer/src/CMakeLists.txt
+
3
−
0
View file @
4090b246
...
...
@@ -25,3 +25,6 @@ install(FILES
${
CMAKE_CURRENT_BINARY_DIR
}
/BeamServer.conf
${
CMAKE_CURRENT_BINARY_DIR
}
/beamctl.conf
DESTINATION etc
)
lofar_add_sysconf_files
(
beamctl.log_prop
)
This diff is collapsed.
Click to expand it.
MAC/APL/PAC/ITRFBeamServer/src/beamctl.log_prop
0 → 100644
+
48
−
0
View file @
4090b246
#
# Adapted log_prop file for beamctl. All runs of beamctl will add logging to
# an existing Rolling logfile, instead of creating a new one each run.
# As the buffer was limited, many older files were overwritten which
# made debugging or finding out what happened in case of a problem impossible.
#
# setup the right levels for logging and tracing
#
# Note: In production you don't want to loose any information so a daily rolling-file
# is used and tracing is switched off.
# For debugging purposes the daily rolling-file becomes too large so a size-based
# rolling file is used and tracing is switched on.
#
# Please do not change the logger lines below, only comment them in or out.
# For PRODUCTION:
# - Select the appropriate log-level for the rootLogger (DEBUG or INFO)
# - Leave the TRC logger on DEBUG,DUMP
# - Comment out the rootLogger and the TRC logger in the TEST section of this file
#log4cplus.rootLogger=DEBUG, DAILYFILE
log4cplus.rootLogger=INFO, ROLFILE
log4cplus.logger.TRC=DEBUG, DUMP
# For TESTING:
# - Select the appropriate trace level for the TRC logger
# - Leave the rootLogger on DEBUG, ROLFILE
# - Comment out the rootLogger and the TRC logger in the PRODUCTION section of this file
#log4cplus.rootLogger=DEBUG, ROLFILE
#log4cplus.logger.TRC=TRACE5, ROLFILE
# The next line should always be active.
log4cplus.additivity.TRC=FALSE
# Definitions of the output channels
log4cplus.appender.STDOUT=log4cplus::ConsoleAppender
log4cplus.appender.STDOUT.layout=log4cplus::PatternLayout
log4cplus.appender.STDOUT.layout.ConversionPattern=%D{%Y-%m-%d %H:%M:%S.%q} %-5p %c{3} - %m [%.25l]%n
log4cplus.appender.ROLFILE=log4cplus::RollingFileAppender
log4cplus.appender.ROLFILE.File=${LOFARROOT}/var/log/${LOG4CPLUS_LOGFILENAME}.log
log4cplus.appender.ROLFILE.MaxFileSize=100MB
log4cplus.appender.ROLFILE.MaxBackupIndex=999
log4cplus.appender.ROLFILE.layout=log4cplus::PatternLayout
log4cplus.appender.ROLFILE.layout.ConversionPattern=%x %D{%Y-%m-%d %H:%M:%S.%q} %-5p %c{3} - %m [%.25l]%n
log4cplus.appender.DUMP=log4cplus::NullAppender
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