diff options
author | Kostyantyn Ovechko <fastinetserver@gmail.com> | 2010-07-28 14:02:57 +0300 |
---|---|---|
committer | Kostyantyn Ovechko <fastinetserver@gmail.com> | 2010-07-28 14:02:57 +0300 |
commit | 4ff3b34839c52ff6bd4e3ee65f3e48c2a2cd9237 (patch) | |
tree | c9ad6a7788a562d8fee6066793a56f50223042cc /segget/config.h | |
parent | Show network_type in tui. (diff) | |
download | idfetch-4ff3b34839c52ff6bd4e3ee65f3e48c2a2cd9237.tar.gz idfetch-4ff3b34839c52ff6bd4e3ee65f3e48c2a2cd9237.tar.bz2 idfetch-4ff3b34839c52ff6bd4e3ee65f3e48c2a2cd9237.zip |
Add options: GENERAL_LOG_TIME_FORMAT, ERROR_LOG_TIME_FORMAT and DEBUG_LOG_TIME_FORMAT to segget.conf file
GENERAL_LOG_TIME_FORMAT
Set time format for general log as a string containing any combination of
regular characters and special format specifiers. These format specifiers are
replaced by the function to the corresponding values to represent the time
specified in timeptr. They all begin with a percentage (%) sign, and are:
%a Abbreviated weekday name [For example: Thu]
%A Full weekday name [For example: Thursday]
%b Abbreviated month name [For example: Aug]
%B Full month name [For example: August]
%c Date and time representation [For example: Thu Aug 23 14:55:02 2001]
%d Day of the month (01-31) [For example: 23]
%H Hour in 24h format (00-23) [For example: 14]
%I Hour in 12h format (01-12) [For example: 02]
%j Day of the year (001-366) [For example: 235]
%m Month as a decimal number (01-12) [For example: 08]
%M Minute (00-59) [For example: 55]
%p AM or PM designation [For example: PM]
%S Second (00-61) [For example: 02]
%U Week number with the first Sunday
as the first day of week one (00-53) [For example: 33]
%w Weekday as a decimal number with
Sunday as 0 (0-6) [For example: 4]
%W Week number with the first Monday as
the first day of week one (00-53) [For example: 34]
%x Date representation [For example: 08/23/01]
%X Time representation [For example: 14:55:02]
%y Year, last two digits (00-99) [For example: 01]
%Y Year [For example: 2001]
%Z Timezone name or abbreviation [For example: CDT]
%% A % sign [For example: %]
For instace general_log_time_format=Time: %m/%d %X
Default:
general_log_time_format=%m/%d %X
ERROR_LOG_TIME_FORMAT
Set time format for error log as a string containing any combination of
regular characters and special format specifiers. See GENERAL_LOG_TIME_FORMAT
for details on format specifiers.
Default:
error_log_time_format=%m/%d %X
DEBUG_LOG_TIME_FORMAT
Set time format for debug log as a string containing any combination of
regular characters and special format specifiers. See GENERAL_LOG_TIME_FORMAT
for details on format specifiers.
Default:
debug_log_time_format=%m/%d %X
Diffstat (limited to 'segget/config.h')
-rw-r--r-- | segget/config.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/segget/config.h b/segget/config.h index 60ae673..79e9ba4 100644 --- a/segget/config.h +++ b/segget/config.h @@ -45,6 +45,7 @@ class Tconfig { {config_file_name=file_name;load_settings_from_config_file();}; void load_settings_from_config_file(); int set(string const& section, string const& entry, string &dst) const; + int set_keep_case(string const& section, string const& entry, string &dst) const; int set(string const& section, string const& entry, ulong &dst, uint const& min_limit, uint const& max_limit) const; int set(string const& section, string const& entry, bool &dst) const; void clear(); |