From f51610900948ebfa01c54d8b90f0c739e7132feb Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 8 Nov 2021 18:56:41 +0300 Subject: [PATCH] log->warn --- apps/documenteditor/main/app/controller/Main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 394e35799..6dbba4338 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -2062,9 +2062,9 @@ define([ Common.UI.LayoutManager.applyCustomization(); if (this.appOptions.customization && (typeof (this.appOptions.customization) == 'object')) { if (this.appOptions.customization.leftMenu!==undefined) - console.log("Obsolete: The 'leftMenu' parameter of the 'customization' section is deprecated. Please use 'leftMenu' parameter in the 'customization.layout' section instead."); + console.warn("Obsolete: The 'leftMenu' parameter of the 'customization' section is deprecated. Please use 'leftMenu' parameter in the 'customization.layout' section instead."); if (this.appOptions.customization.rightMenu!==undefined) - console.log("Obsolete: The 'rightMenu' parameter of the 'customization' section is deprecated. Please use 'rightMenu' parameter in the 'customization.layout' section instead."); + console.warn("Obsolete: The 'rightMenu' parameter of the 'customization' section is deprecated. Please use 'rightMenu' parameter in the 'customization.layout' section instead."); } promise = this.getApplication().getController('Common.Controllers.Plugins').applyUICustomization(); }