diff --git a/src/config.ts b/src/config.ts index eedd0e56..5edc1c41 100644 --- a/src/config.ts +++ b/src/config.ts @@ -20,10 +20,10 @@ Object.defineProperty(config, "mode", { set(mode: string) { QWeb.dev = mode === "dev"; if (QWeb.dev) { - const url = `https://github.com/odoo/owl/blob/master/doc/reference/config.md#mode`; - console.warn( - `Owl is running in 'dev' mode. This is not suitable for production use. See ${url} for more information.` - ); + console.info(`Owl is running in 'dev' mode. + +This is not suitable for production use. +See https://github.com/odoo/owl/blob/master/doc/reference/config.md#mode for more information.`); } else { console.log(`Owl is now running in 'prod' mode.`); }