diff options
Diffstat (limited to 'segget/log.h')
-rw-r--r-- | segget/log.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/segget/log.h b/segget/log.h index fb3f078..e6a98cc 100644 --- a/segget/log.h +++ b/segget/log.h @@ -31,13 +31,18 @@ #define LOG_LINES_MAX_NUM 200 using namespace std; +extern vector<string> rss_distfile_lines; +extern vector<ulong> rss_size_lines; +extern vector<string> rss_time_lines; extern vector<string> log_lines; extern vector<string> error_log_lines; +void rss_log(string distfile_name, ulong distfile_size); void log_no_msg(string log_msg_text); void log(string log_msg_text); void debug_no_msg(string debug_msg_text); void debug(string debug_msg_text); void error_log_no_msg(string error_msg_text); void error_log(string error_msg_text); +string get_time(string time_format); #endif
\ No newline at end of file |