Hangfire recurring jobs and Elmah

Hello

As far as i know, Hangfire should have full automatic support for Elmah, however, i just installed Elmah, and it seems to log exceptions and errors fine, just not from Hangfire.

A simple example:

//From the owinstartup class:
var logic = new Logic();
RecurringJob.AddOrUpdate(() => logic.test(), "* * * * *");

//The logic class
public void test()
 {
     throw new Exception("hello");
}

This exception not show up in the Elmah error log

What do you think the problem could be?