-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
155 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,30 @@ | ||
# simpleLog4sh配置文件 | ||
# simpleLog4sh configuration file | ||
|
||
# 日志文件存储的根目录(默认为/tmp/simpleLog4sh) | ||
simpleLog4sh_LOG_DIR="/tmp/simpleLog4sh-logs" | ||
# root directory for log files (deafult: /tmp/simpleLog4sh) | ||
# simpleLog4sh_LOG_DIR="/tmp/simpleLog4sh" | ||
|
||
# 日志文件的前缀(默认为simpleLog4sh) | ||
simpleLog4sh_LOG_FILE_NAME_PREFIX="simpleLog" | ||
# prfeix name of log files (default: simpleLog4sh) | ||
# simpleLog4sh_LOG_FILE_NAME_PREFIX="simpleLog4sh" | ||
|
||
# 日志级别,可以设置为 ALL TRACE DEBUG INFO WARN ERROR OFF(默认为ALL) | ||
# control the maximum number (in days) of archive files to keep (default: -1 to keep all) | ||
# e.g. if simpleLog4sh_MAX_HISTORY=3 and today is Aug 8th, Aug 5-7th's log will be kept. | ||
# AKA log files on and before Aug 4th will be deleted. | ||
# If you don't want to delete old log files automatically, set as a negative number such as -1 | ||
# simpleLog4sh_MAX_HISTORY=-1 | ||
|
||
# log level: ALL TRACE DEBUG INFO WARN ERROR OFF (default: ALL) | ||
# simpleLog4sh_LOG_LEVEL="ALL" | ||
|
||
# 日志文件的后缀(默认为.log) | ||
# suffix name of log files (default: .log) | ||
# simpleLog4sh_LOG_FILE_NAME_SUFFIX=".log" | ||
|
||
# 标准输出重定向文件的后缀,空表示不重定向标准输出(默认为空) | ||
# suffix name of stdout log (default: "") | ||
# keep it empty if you don't want to redirect stdout | ||
# simpleLog4sh_LOG_STDOUT_SUFFIX=".out" | ||
|
||
# 标准错误输出重定向文件的后缀,空表示不重定向(默认为空) | ||
# suffix name of stderr log (default: "") | ||
# keep it empty if you don't want to redirect stderr | ||
# simpleLog4sh_LOG_STDERR_SUFFIX=".err" | ||
|
||
# 是否显示完成的函数调用路径(默认为false) | ||
simpleLog4sh_LOG_FULL_CALLPATH="true" | ||
# show full call path of functions (default: false) | ||
# simpleLog4sh_LOG_FULL_CALLPATH="false" |
Oops, something went wrong.