Skip to content
This repository was archived by the owner on Feb 27, 2020. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/log.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace Log
}
void setLoggingLevel(int level);
Logger* setLogger(Logger *log);
void write(int level, const char *module, int line_number, const char *fmt, ...);
void write(int level, const char *module, int line_number, const char *fmt, ...) __attribute__ ((__format__(printf, 4, 5)));
void _write(int level, const char *module, int line_number, const char *fmt, va_list args);
void backtrace(const char *fmt, ...);
void commit();
Expand Down