simplify PrintAndLogEx()

This commit is contained in:
Brian Pow 2018-02-21 14:10:44 +08:00
commit 68fddf00ce
2 changed files with 7 additions and 11 deletions

View file

@ -29,14 +29,14 @@
#define M_PI 3.14159265358979323846264338327
#endif
#define MAX_PRINT_BUFFER 2048
typedef enum logLevel {NORMAL, INFO, WARNING, ERR, DEBUG} logLevel_t;
typedef enum logLevel {NORMAL, SUCCESS, INFO, FAILED, WARNING, ERR, DEBUG} logLevel_t;
void ShowGui(void);
void HideGraphWindow(void);
void ShowGraphWindow(void);
void RepaintGraphWindow(void);
extern void PrintAndLog(char *fmt, ...);
void PrintAndLogEx(logLevel_t level, char *filename, int lineno, char *func, char *fmt, ...);
void PrintAndLogEx(logLevel_t level, char *fmt, ...);
extern void SetLogFilename(char *fn);
extern double CursorScaleFactor;