Skip to content
Snippets Groups Projects
Commit a6223ca1 authored by Tomáš Plesník's avatar Tomáš Plesník
Browse files

pridani parametru pro nastaveni verbosity logovani do syslogu; zmena nazvu...

pridani parametru pro nastaveni verbosity logovani do syslogu; zmena nazvu parametru pro nastaveni verbosity na stderr
parent c51d53f0
No related branches found
No related tags found
No related merge requests found
...@@ -46,15 +46,22 @@ $CONNECTION_TIMEOUT = 60; ...@@ -46,15 +46,22 @@ $CONNECTION_TIMEOUT = 60;
$LOG_STDERR = 1; $LOG_STDERR = 1;
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# LOG_VERBOSE - enable/disable logging in verbose mode (stack info added) # LOG_STDERR_VERBOSE - enable/disable logging in verbose mode to stderr (stack
# info added) if reporting to stderr is enabled only
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$LOG_VERBOSE = 1; $LOG_STDERR_VERBOSE = 0;
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# SYSLOG - enable/disable syslog logging # SYSLOG - enable/disable syslog logging
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$SYSLOG = 1; $SYSLOG = 1;
#-------------------------------------------------------------------------------
# SYSLOG_VERBOSE - enable/disable logging in verbose mode to syslog (stack info
# added) if syslog logging is enabled only
#-------------------------------------------------------------------------------
$SYSLOG_VERBOSE = 0;
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# SYSLOG_FACILITY - syslog facility # SYSLOG_FACILITY - syslog facility
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
......
...@@ -46,15 +46,22 @@ $CONNECTION_TIMEOUT = 60; ...@@ -46,15 +46,22 @@ $CONNECTION_TIMEOUT = 60;
$LOG_STDERR = 1; $LOG_STDERR = 1;
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# LOG_VERBOSE - enable/disable logging in verbose mode (stack info added) # LOG_STDERR_VERBOSE - enable/disable logging in verbose mode to stderr (stack
# info added) if reporting to stderr is enabled only
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$LOG_VERBOSE = 1; $LOG_STDERR_VERBOSE = 0;
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# SYSLOG - enable/disable syslog logging # SYSLOG - enable/disable syslog logging
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$SYSLOG = 1; $SYSLOG = 1;
#-------------------------------------------------------------------------------
# SYSLOG_VERBOSE - enable/disable logging in verbose mode to syslog (stack info
# added) if syslog logging is enabled only
#-------------------------------------------------------------------------------
$SYSLOG_VERBOSE = 0;
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# SYSLOG_FACILITY - syslog facility # SYSLOG_FACILITY - syslog facility
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
......
...@@ -46,15 +46,22 @@ $CONNECTION_TIMEOUT = _CONNECTIONTIMEOUT_; ...@@ -46,15 +46,22 @@ $CONNECTION_TIMEOUT = _CONNECTIONTIMEOUT_;
$LOG_STDERR = _LOGSTDERR_; $LOG_STDERR = _LOGSTDERR_;
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# LOG_VERBOSE - enable/disable logging in verbose mode (stack info added) # LOG_STDERR_VERBOSE - enable/disable logging in verbose mode to stderr (stack
# info added) if reporting to stderr is enabled only
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$LOG_VERBOSE = _LOGVERBOSE_; $LOG_STDERR_VERBOSE = _LOGSTDERRVERBOSW_;
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# SYSLOG - enable/disable syslog logging # SYSLOG - enable/disable syslog logging
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$SYSLOG = _SYSLOG_; $SYSLOG = _SYSLOG_;
#-------------------------------------------------------------------------------
# SYSLOG_VERBOSE - enable/disable logging in verbose mode to syslog (stack info
# added) if syslog logging is enabled only
#-------------------------------------------------------------------------------
$SYSLOG_VERBOSE = _SYSLOGVERBOSE_;
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# SYSLOG_FACILITY - syslog facility # SYSLOG_FACILITY - syslog facility
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment