Debug a Hangfire Background Process

So i am new to using Hangfire to manage my background processing. Is it possible to debug the background process in Visual Studio 2015? At least i would like the background process to still write to the debug console. Is this possible?

I have a console project that runs in the background, and the client is a ASP.MVC that schedule jobs as usual triggered on certain conditions.

when I want to debug locally, i just run the console app in one instance of Visual studio and run the web page, also works running both at the same time. from there is just normal, or i can attach to the running process in the remote DEV server for the console app.

So far i haven’t had any issue debugging.