Open
Description
In the following code
try{
blah();
}
catch(Exception $e){
Rollbar::log(Level::ERROR, “this is sent”);
Rollbar::log(Level::ERROR, $e); /* this is not */
}
the first log is sent to Rollbar, but not the second. I can’t figure out what is wrong there. Removing the catch
or throwing inside it does the same, the exception is not sent (intentionally raised by causing a syntax error).