From 1fecc7c5535353fde84bd6fcda6d743a68a034db Mon Sep 17 00:00:00 2001 From: Gunjan Datta Date: Mon, 7 Oct 2024 10:20:04 -0400 Subject: [PATCH] Added more logging for views. --- src/helper/spCfg.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/helper/spCfg.ts b/src/helper/spCfg.ts index 9280fe7b..0ce8c311 100644 --- a/src/helper/spCfg.ts +++ b/src/helper/spCfg.ts @@ -1181,6 +1181,9 @@ export const SPConfig = (cfg: ISPConfigProps, webUrl?: string): ISPConfig => { // Parse the view fields for (let i = 0; i < cfg.ViewFields.length; i++) { + // Log + logMessage("[gd-sprest][View] Add view field '" + cfg.ViewFields[i] + "' to the view."); + // Add the view field view.ViewFields().addViewField(cfg.ViewFields[i]).execute(true); }