Why are you setting “verbosity: 3”? According to http://docs.ansible.com/ansible/latest/modules/debug_module.html, that means “if you set to 3 it will only run debug when -vvv or above”. That’s causing Ansible to skip the task, thus the message you’re seeing (“Verbosity threshold not met”).
Remove that, and you should get some better results.