Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add documentation for the omero.logging properties #6393

Merged
merged 3 commits into from
Jul 12, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 39 additions & 2 deletions etc/omero.properties
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ omero.ports.registry=4061
## JVM configuration
##
## Note: changes to the omero.jvmcfg properties
## will *not* be reflected in the compiled server
## since they are defined in a Python file.
## will *not* be reflected in OMERO.server
## since they are defined in OMERO.py.
#############################################
## (For documentation only)
# Memory strategy which will be used by default.
Expand Down Expand Up @@ -115,6 +115,43 @@ omero.jvmcfg.min_system_memory=3414
omero.jvmcfg.max_system_memory=48000


#############################################
## Logging properties
##
## Note: changes to the default omero.logging values in
## this file will *not* be reflected in OMERO.server
## since they are defined in OMERO.py
#############################################

## (For documentation only)
# Relative server directory where the log files should be stored.
omero.logging.directory=var/log/

## (For documentation only)
# Whether the server log files should be rotated at a certain time
# interval. If true, log files will be rolled over at midnight.
# Otherwise, log files will be rolled over at a predetermined size,
# see omero.logging.logsize for more information.
omero.logging.timedlog=false

## (For documentation only)
# If omero.logging.timedlog is false or unset, specifies the
# maximum size of the server log files in bytes above which a
# new log file should be created.
omero.logging.logsize=5000000

## (For documentation only)
# If omero.logging.timedlog is false or unset, specifies the
# number of old server log files that should be kept. Old log
# files will be saved by appending the extensions '.1', '.2' etc.
omero.logging.lognum=9

## (For documentation only)
# Specifies the threshold for the server log files. Logging messages
# which are less severe than this value will be ignored. For a list of
# available values, see https://docs.python.org/3/library/logging.html#levels.
omero.logging.level=20

#############################################
## Ice overrides
##
Expand Down
Loading