noPrintprint() is a raw output function lacking log levels, timestamps, and filtering. Production systems require structured logging for debugging and monitoring. Replace print(...) with Log.printsmall-rules/no-printUse Log instead of print().
I just really don’t like unnecessary output logging. print() is a raw Luau function with no log levels, no
timestamps, and no filtering. Once it’s in production you can’t turn it off or route it anywhere useful.
Use Log instead. It gives you levels among other
things. Not recommended to suppress this one.
noPrintprint() is a raw output function lacking log levels, timestamps, and filtering. Production systems require structured logging for debugging and monitoring. Replace print(...) with Log.This rule does not accept options.
print('Hello');Log.info('Hello');