-1
TL;DR;
The above message is not an error, it’s just a log. It’s saying that Jqmigrate has been loaded. If that’s all, you don’t have to worry ;)
Explanation
To interact with the browser console uses a JS object, also called console
. It can send various 'types' of messages used for different occasions.
Existing types and their respective uses are:
- debug: debug code;
- log: indicate relevant events;
- warn: indicate that something out of the ordinary has happened, but the program will continue running as far as possible;
- error: indicate that a serious error has occurred and may interfere with the execution of the program.
To send a message with one of the above types, just use the method with the same type name:
console.debug('Testando meu código');
console.info('É bom você saber disso');
console.log('Algo relevante aconteceu');
console.warn('Algo pode estar errado');
console.error('Algo definitivamente está errado');
In Chrome it is possible to distinguish the type through the message icon/color:
Therefore it is possible to realize that your message is a log and therefore is not an error.
Avoid prints, especially when it even displays some error...
– Kenny Rafael
Welcome! The more you specify your problem the easier it will be to help you. Your problem is time to upload the theme to the right wordpress? Does wordpress display some error message and the theme is not successfully uprooted? What would be the theme? wordpress version?
– Joao Paulo