Closed pnoeric closed 5 years ago
Hi @darinhoward and @homiedopie - really appreciate the quick attention and fix here. Can you also please bump the version number, so Packagist will see the new version and then my project (which loads this library via composer) will pick it up? Excited to test it.
Version numbers have been updated for both versions (1.1.1 and 2.1.1). @pnoeric
It's working great! Thank you.
Interesting (and unfortunately, what appears to be a pretty serious) bug I found... when I have 2 handlers, one to log to a local file and one to send to Stackify, the Stackify handler "eats" any messages that aren't DEBUG level. So for INFO, WARNING, ERROR and other messages, I see them in Stackify, but not in my local log.
I wrote some code to reproduce the problem, try this:
When I run this with the Stackify handler DISABLED (change the
if
statement to 0), I see all 6 messages in the local log file.But when I turn on Stackify, I see the 6 messages in the Stackify log viewer (good), but ONLY the 2 "DEBUG" messages in my local log file.
What's going on?!
Here's my Composer.json and my installed packages FYI, I think everything is up to date