-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Review logging system #1065
Comments
To address second point, I've been analyzing all modules issuing
Proposed solution implies replacing all #if defined(SUPPORT_TRACELOG_OUTPUT)
#define TRACELOG(level, ...) TraceLog(level, __VA_ARGS__)
#else
#define TRACELOG(level, ...) {}
#endif |
Two Suggestions:
|
Replaced |
TraceLog messages have been reviewed in multiple commits: Messages have been categorized in multiple ways:
Probably these categories and the messages will be reviewed in the future but here we go! |
Current logging system needs several improvements.
TraceLog()
messages should be properly categorized and unified, they need to be standardized in some way:The text was updated successfully, but these errors were encountered: