We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We can print with colors to terminal
#define KCYN "\x1B[36m" printf("%scyn\n", KCYN );
Could it be added to the library as an optional parameter to verbosity levels?
#define KCYN "\x1B[36m" #define DETAILS 3 LOG_F(3, KCYN, "log DETAILS with cyan color"); LOG_F(3, "log DETAILS with default color");
It would make it easy to write a custom functions for colored output.
auto LOG_F3(string message) { LOG_F(DETAILS, KCYN, message); }
The code is just demonstration of how idea may look.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We can print with colors to terminal
Could it be added to the library as an optional parameter to verbosity levels?
It would make it easy to write a custom functions for colored output.
The code is just demonstration of how idea may look.
The text was updated successfully, but these errors were encountered: