mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
14 lines
212 B
C
14 lines
212 B
C
#ifndef LOG_H
|
|
#define LOG_H
|
|
|
|
#define PROF "prof"
|
|
#define CONN "conn"
|
|
|
|
FILE *logp;
|
|
|
|
xmpp_log_t *xmpp_get_file_logger();
|
|
void logmsg(const char * const area, const char * const msg);
|
|
void start_log(void);
|
|
|
|
#endif
|