diff --git a/src/lib/core/plugin.js b/src/lib/core/plugin.js index 32cee7e1d..6f14d0ca2 100644 --- a/src/lib/core/plugin.js +++ b/src/lib/core/plugin.js @@ -162,7 +162,8 @@ Plugin.prototype.addContractFile = function(file) { Plugin.prototype.registerConsoleCommand = function(optionsOrCb) { if (typeof optionsOrCb === 'function') { - this.logger.warn(__('Registering console commands with function syntax is deprecated and will likely be removed in future versions of Embark.')); + this.logger.warn(__('Registering console commands with function syntax is deprecated and will likely be removed in future versions of Embark')); + this.logger.info(__('You can find the new API documentation here: %s', 'https://embark.status.im/docs/plugin_reference.html#registerConsoleCommand-options'.underline)); } this.console.push(optionsOrCb); this.addPluginType('console');