From 05bf0b2bc06436107e38f0154c402531a915124b Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Wed, 9 Jun 2021 16:12:07 +0200 Subject: [PATCH] GlobalIndexer: Dont log empty lookup controls as warning --- GUIs.GlobalIndexer/ControlCreator.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUIs.GlobalIndexer/ControlCreator.vb b/GUIs.GlobalIndexer/ControlCreator.vb index 15f9a689..ed16d3ed 100644 --- a/GUIs.GlobalIndexer/ControlCreator.vb +++ b/GUIs.GlobalIndexer/ControlCreator.vb @@ -219,7 +219,7 @@ Public Class ControlCreator oControl.Properties.DisplayMember = oDataSource.Columns.Item(0).ColumnName oControl.Properties.ValueMember = oDataSource.Columns.Item(0).ColumnName Else - Logger.Warn("Lookup {0} Datasource did not contain any columns!", oControl.Name) + Logger.Info("Lookup {0} Datasource did not contain any columns!", oControl.Name) End If End If Catch ex As Exception