App-error log issue

I am posting to the app-error log but the line is also being logged in the app-info log.

This is not true the other way round fortunatley, but not the droinds we were looking for.

This is admittedly odd, but also the way most logging systems work. These are Log Levels not log types. The “info” catches everything from the “info” level down. the “error” log catches everything from error down. We only have two levels exposed here, So they stack like this

Info
Error

Other systems might have log levels like

Debug
Info
Warning
Error
Fatal

In case like that the info log would catch

Info
Warning
Error
Fatal

and error would catch

Error
Fatal

Hope that helps

Todd

OK thanks @toddgeist

Think I was assuming it was a discrete operation not a cumulative one.
I can plan better knowing that.