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
In a multi-part project (consider termcaps, parser, job control, hum). To remove the output of the logger for some part, implement a flag.
general : L_G 0x01 termcaps : L_T 0x02 parser : L_P 0x04 job : L_J 0x08
and call the logger like it :
log_info(L_P | L_T, "%s", "log message");
This will display messages for general (everytime), parser and terncaps, but not job control.
The text was updated successfully, but these errors were encountered:
anouvel
No branches or pull requests
In a multi-part project (consider termcaps, parser, job control, hum). To remove the output of the logger for some part, implement a flag.
and call the logger like it :
This will display messages for general (everytime), parser and terncaps, but not job control.
The text was updated successfully, but these errors were encountered: