aboutsummaryrefslogtreecommitdiff
path: root/c_implementation/include/libaklog.h
blob: 31478a7570003e26d5056d734e35f29a7fb000b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef AKLOG
#define AKLOG

typedef enum {
    INFO,
    WARNING,
    ERROR,
    EXIT,
    DEBUG
} LogMessageType;

void ak_log_print_log_line(char* line);
void ak_log_follow();
void ak_log_grep(char* string);
void ak_log_rotate();
int ak_log_write_to_file(char* message);
void ak_log_message(const char* program, LogMessageType lmtype, char* message);
void ak_log_exit(const char* program, char* message);
void ak_log_warning(const char* program, char* message);
void ak_log_debug(const char* program, char* message);
void ak_log_error(const char* program, char* message);
void ak_log_info(const char* program, char* message);

#endif // AKLOG