Appearance
Forbid the use of the log() function
This rule prohibits log statements.
Example of incorrect code for this rule:
main() { log("This"); }
Example of correct code for this rule:
main() { NotLogging("This"); }