You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do you know offhand if there are other logging methods that get misused like this? Why does the logging method take the parameter if it's not going to use it?
Original issue created by tanaeem@google.com on 2013-02-27 at 10:53 PM
A common logging bug is to log like following
logger.info("Number of errors %d", errorCount);
Sadly this does not show any error, except log file is full of nonsense message.
Obviously they were trying to use
logger.infofmt("Number of errors %d", errorCount);
The text was updated successfully, but these errors were encountered: