seafile/common/log.h
feiniks 3290f3fd80
Get notification from server (#2527)
* Get notification from server

Don't sync repo when repo is subscribed

Get notification from server

* Disconnect notification server when subscribed repos is 0 and modify log info

* Add jwt certification

* Use server lock

* VS add libwebsockets

* Add check notification server

* Check notif server once

* Check locks and folder perms after fileserver is recovered

* Add comment

Co-authored-by: heran yang <heran.yang@seafile.com>
2022-12-24 16:51:55 +08:00

71 lines
1.6 KiB
C

#ifndef LOG_H
#define LOG_H
#define SEAFILE_DOMAIN g_quark_from_string("seafile")
#ifndef seaf_warning
#ifndef WIN32
#define seaf_warning(fmt, ...) g_warning("%s(%d): " fmt, __FILE__, __LINE__, ##__VA_ARGS__)
#else
#define seaf_warning(...) g_warning(__VA_ARGS__)
#endif
#endif
#ifndef seaf_message
#ifndef WIN32
#define seaf_message(fmt, ...) g_message("%s(%d): " fmt, __FILE__, __LINE__, ##__VA_ARGS__)
#else
#define seaf_message(...) g_message(__VA_ARGS__)
#endif
#endif
int seafile_log_init (const char *logfile, const char *ccnet_debug_level_str,
const char *seafile_debug_level_str);
int seafile_log_reopen ();
#ifndef WIN32
#ifdef SEAFILE_SERVER
void
set_syslog_config (GKeyFile *config);
#endif
#endif
void
seafile_debug_set_flags_string (const gchar *flags_string);
typedef enum
{
SEAFILE_DEBUG_TRANSFER = 1 << 1,
SEAFILE_DEBUG_SYNC = 1 << 2,
SEAFILE_DEBUG_WATCH = 1 << 3, /* wt-monitor */
SEAFILE_DEBUG_HTTP = 1 << 4, /* http server */
SEAFILE_DEBUG_MERGE = 1 << 5,
SEAFILE_DEBUG_CURL = 1 << 6,
SEAFILE_DEBUG_NOTIFICATION = 1 << 7,
SEAFILE_DEBUG_OTHER = 1 << 8,
} SeafileDebugFlags;
gboolean
seafile_debug_flag_is_set (SeafileDebugFlags flag);
void seafile_debug_impl (SeafileDebugFlags flag, const gchar *format, ...);
#ifdef DEBUG_FLAG
#undef seaf_debug
#define seaf_debug(fmt, ...) \
seafile_debug_impl (DEBUG_FLAG, "%.10s(%d): " fmt, __FILE__, __LINE__, ##__VA_ARGS__)
#endif /* DEBUG_FLAG */
#endif
FILE *seafile_get_log_fp ();
// seafile event log
int
seafile_event_log_init (const char *_logfile);
void seafile_event_message (const char *msg);