In perl, I am using Dancer 2 frame work, and using this plugin
use Dancer2::Plugin::Deferred;
use Dancer2::Plugin::Locale::Wolowitz;
For statements like below:
my $method = request->method();
my $params = request->params;
I am getting following warnings on console:
Plugin DSL method 'request' is deprecated. Use '$self->app->request' instead'.
Please give your recommendations to solve it out, I am not sure which of these two modules are causing this.
thanks