2016-08-10 06:53:33 +00:00
|
|
|
#ifndef LOG_H
|
|
|
|
#define LOG_H
|
|
|
|
|
|
|
|
#define SEAFILE_DOMAIN g_quark_from_string("seafile")
|
|
|
|
|
|
|
|
#ifndef seaf_warning
|
|
|
|
#define seaf_warning(fmt, ...) g_warning("%s(%d): " fmt, __FILE__, __LINE__, ##__VA_ARGS__)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef seaf_message
|
|
|
|
#define seaf_message(fmt, ...) g_message("%s(%d): " fmt, __FILE__, __LINE__, ##__VA_ARGS__)
|
|
|
|
#endif
|
|
|
|
|
2024-10-24 02:46:41 +00:00
|
|
|
#ifndef seaf_error
|
|
|
|
#define seaf_error(fmt, ...) g_critical("%s(%d): " fmt, __FILE__, __LINE__, ##__VA_ARGS__)
|
|
|
|
#endif
|
|
|
|
|
2016-08-10 06:53:33 +00:00
|
|
|
|
|
|
|
int seafile_log_init (const char *logfile, const char *ccnet_debug_level_str,
|
2024-10-24 02:46:41 +00:00
|
|
|
const char *seafile_debug_level_str, const char *_app_name);
|
2016-08-10 06:53:33 +00:00
|
|
|
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_OTHER = 1 << 6,
|
|
|
|
} SeafileDebugFlags;
|
|
|
|
|
|
|
|
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
|