diff --git a/pkg/plugin/plugin.go b/pkg/plugin/plugin.go index 9ddc047..d29c1cb 100644 --- a/pkg/plugin/plugin.go +++ b/pkg/plugin/plugin.go @@ -187,7 +187,7 @@ func (o *OCIDatasource) getCreateDataFieldElemsForField(dataFieldDefns map[strin var ok bool if dataFieldDefn, ok = dataFieldDefns[uniqueFieldKey]; !ok { - o.logger.Error("Did NOT find existing data field definition", "uniqueKey", uniqueFieldKey) + o.logger.Debug("Did NOT find existing data field definition", "uniqueKey", uniqueFieldKey) // Since the specified unique key does not exist in the provided map, // create & populate a new DataFieldElements object and add it to the map // Map for the Labels element is always created and if a field has no associated labels then diff --git a/pkg/plugin/query.go b/pkg/plugin/query.go index c514dc0..6e1ce00 100644 --- a/pkg/plugin/query.go +++ b/pkg/plugin/query.go @@ -29,7 +29,7 @@ func (ocidx *OCIDatasource) query(ctx context.Context, pCtx backend.PluginContex takey = ocidx.GetTenancyAccessKey(qm.TenancyOCID) logQueryType := ocidx.identifyQueryType(qm.QueryText) - backend.Logger.Warn("plugin.query", "logQueryType", logQueryType) + backend.Logger.Debug("plugin.query", "logQueryType", logQueryType) var processErr error fromMs := query.TimeRange.From.UnixNano() / int64(time.Millisecond)