From 8bc27adf0b6983f5a1d63164eae70446f15d0016 Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Mon, 8 Nov 2021 10:40:12 +0100 Subject: [PATCH] dial back logging --- app/DD_PM_WINDREAM/ClassControlCreator.vb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/DD_PM_WINDREAM/ClassControlCreator.vb b/app/DD_PM_WINDREAM/ClassControlCreator.vb index a717056..eae8e82 100644 --- a/app/DD_PM_WINDREAM/ClassControlCreator.vb +++ b/app/DD_PM_WINDREAM/ClassControlCreator.vb @@ -603,7 +603,7 @@ Public Class ClassControlCreator Dim oDefaultValue = NotNull(oColumnData.Item("DEFAULT_VALUE"), String.Empty) If oDefaultValue <> String.Empty Then - Logger.Debug("Setting default value [{0}] for column [{0}]", oDefaultValue, oGridColumn.FieldName) + Logger.Debug("Setting default value [{0}] for column [{1}]", oDefaultValue, oGridColumn.FieldName) oView.SetRowCellValue(e.RowHandle, oGridColumn.FieldName, oDefaultValue) End If Next @@ -617,8 +617,6 @@ Public Class ClassControlCreator AddHandler oView.CustomRowCellEdit, Sub(sender As Object, e As CustomRowCellEditEventArgs) Try - Logger.Debug("Assigning editors to cells.") - For Each oRow As DataRow In DT_MY_COLUMNS.Rows Dim oColumnName = oRow.Item("SPALTENNAME") Dim oEditorExists = GridTables_TestEditorExistsByControlAndColumn(oControlId, oColumnName)