top | item 46343845

(no title)

kgklxksnrb | 2 months ago

Logging warnings are cowardly, you just push the decision to the log consumer to decide if the error should be acted on.

Warnings are just errors that no one wants to deal with.

discuss

order

bluGill|2 months ago

Warnings are for where you expect someplace else to know/log if it really is an error but it might also be normal. You might log why a file io operation failed: if the caller recovers somehow it isn't an errer, but if they can't they log an error and when investigating the warning gives the detail you need to figure it out.

kgklxksnrb|2 months ago

Who proactively investigates warnings?