-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
Logging level #38
Merged
Merged
Logging level #38
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
94b99a0
Set logging levels in Makefile using -DRAY_COMMON_LOG_LEVEL=level
a80f2ee
Lower level of some LOG_ERROR messages, log the name of the table ope…
stephanie-wang 4e88f52
Address rest of Robert's comments
stephanie-wang 2478ed7
Fix spurious log message
stephanie-wang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,20 +11,49 @@ | |
|
||
#include "utarray.h" | ||
|
||
#ifndef RAY_COMMON_DEBUG | ||
#define RAY_COMMON_DEBUG 0 | ||
#define RAY_COMMON_INFO 1 | ||
#define RAY_COMMON_WARNING 2 | ||
#define RAY_COMMON_ERROR 3 | ||
#define RAY_COMMON_FATAL 4 | ||
|
||
/* Default logging level is INFO. */ | ||
#ifndef RAY_COMMON_LOG_LEVEL | ||
#define RAY_COMMON_LOG_LEVEL RAY_COMMON_INFO | ||
#endif | ||
|
||
#if (RAY_COMMON_LOG_LEVEL > RAY_COMMON_DEBUG) | ||
#define LOG_DEBUG(M, ...) | ||
#else | ||
#define LOG_DEBUG(M, ...) \ | ||
fprintf(stderr, "[DEBUG] (%s:%d) " M "\n", __FILE__, __LINE__, ##__VA_ARGS__) | ||
#endif | ||
|
||
#define LOG_ERR(M, ...) \ | ||
fprintf(stderr, "[ERROR] (%s:%d: errno: %s) " M "\n", __FILE__, __LINE__, \ | ||
errno == 0 ? "None" : strerror(errno), ##__VA_ARGS__) | ||
|
||
#if (RAY_COMMON_LOG_LEVEL > RAY_COMMON_INFO) | ||
#define LOG_INFO(M, ...) | ||
#else | ||
#define LOG_INFO(M, ...) \ | ||
fprintf(stderr, "[INFO] (%s:%d) " M "\n", __FILE__, __LINE__, ##__VA_ARGS__) | ||
#endif | ||
|
||
#if (RAY_COMMON_LOG_LEVEL > RAY_COMMON_WARNING) | ||
#define LOG_WARN(M, ...) | ||
#else | ||
#define LOG_WARN(M, ...) \ | ||
fprintf(stderr, "[WARN] (%s:%d) " M "\n", __FILE__, __LINE__, ##__VA_ARGS__) | ||
#endif | ||
|
||
#if (RAY_COMMON_LOG_LEVEL > RAY_COMMON_ERROR) | ||
#define LOG_ERROR(M, ...) | ||
#else | ||
#define LOG_ERROR(M, ...) \ | ||
fprintf(stderr, "[ERROR] (%s:%d: errno: %s) " M "\n", __FILE__, __LINE__, \ | ||
errno == 0 ? "None" : strerror(errno), ##__VA_ARGS__) | ||
#endif | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. may have introduced some compiler warnings.
|
||
|
||
#if (RAY_COMMON_LOG_LEVEL > RAY_COMMON_FATAL) | ||
#define LOG_FATAL(M, ...) | ||
#else | ||
#define LOG_FATAL(M, ...) \ | ||
do { \ | ||
fprintf(stderr, "[FATAL] (%s:%d) " M "\n", __FILE__, __LINE__, \ | ||
|
@@ -34,10 +63,11 @@ | |
backtrace_symbols_fd(buffer, calls, 1); \ | ||
exit(-1); \ | ||
} while (0); | ||
#endif | ||
|
||
#define CHECKM(COND, M, ...) \ | ||
if (!(COND)) { \ | ||
LOG_ERR("Check failure: %s \n" M, #COND, ##__VA_ARGS__); \ | ||
#define CHECKM(COND, M, ...) \ | ||
if (!(COND)) { \ | ||
LOG_FATAL("Check failure: %s \n" M, #COND, ##__VA_ARGS__); \ | ||
} | ||
|
||
#define CHECK(COND) CHECKM(COND, "") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just tried running
And it printed
If that is something that happens normally while Ray is functioning correctly, then there it shouldn't be an error or even a warning. It should be INFO or DEBUG, right?