I just discover that I do not need to add anything to web.d as I did, I can achieve better information setting the debug level at runtime on the application entry point.

setLogLevel(LogLevel.trace);

With that I could see that my url call is added to the "DELETE" method but I was trying to call it using "GET".

Cheers !