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
...@@ -31,7 +31,7 @@ $SSL_CA_CERT = "/etc/ssl/certs/tcs-ca-bundle.pem"; ...@@ -31,7 +31,7 @@ $SSL_CA_CERT = "/etc/ssl/certs/tcs-ca-bundle.pem";
# consumes app. 250 MB of memory # consumes app. 250 MB of memory
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$MAX_RCV_EVENTS_LIMIT = 6000; $MAX_RCV_EVENTS_LIMIT = 6000;
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# CONNECTION_TIMEOUT - interval in seconds to timeout connection with Warden # CONNECTION_TIMEOUT - interval in seconds to timeout connection with Warden
# server. If your client timeouts, consider using higher # server. If your client timeouts, consider using higher
...@@ -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
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
......
...@@ -31,7 +31,7 @@ $SSL_CA_CERT = "_CAFILE_"; ...@@ -31,7 +31,7 @@ $SSL_CA_CERT = "_CAFILE_";
# consumes app. 250 MB of memory # consumes app. 250 MB of memory
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$MAX_RCV_EVENTS_LIMIT = 6000; $MAX_RCV_EVENTS_LIMIT = 6000;
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# CONNECTION_TIMEOUT - interval in seconds to timeout connection with Warden # CONNECTION_TIMEOUT - interval in seconds to timeout connection with Warden
# server. If your client timeouts, consider using higher # server. If your client timeouts, consider using higher
...@@ -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
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
......
...@@ -31,7 +31,7 @@ $SSL_CA_CERT = "_CAFILE_"; ...@@ -31,7 +31,7 @@ $SSL_CA_CERT = "_CAFILE_";
# consumes app. 250 MB of memory # consumes app. 250 MB of memory
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$MAX_RCV_EVENTS_LIMIT = _MAXRCVEVENTSLIMIT_; $MAX_RCV_EVENTS_LIMIT = _MAXRCVEVENTSLIMIT_;
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# CONNECTION_TIMEOUT - interval in seconds to timeout connection with Warden # CONNECTION_TIMEOUT - interval in seconds to timeout connection with Warden
# server. If your client timeouts, consider using higher # server. If your client timeouts, consider using higher
...@@ -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.
Finish editing this message first!
Please register or to comment