diff --git a/CHANGES.rst b/CHANGES.rst index e1c3082..5e0f922 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,6 +5,8 @@ grafana-wtf changelog in progress =========== +- Relaxed logging when dashboards defined as variables can not be found. + Thanks, @GrgDev. 2025-03-18 0.23.0 ================= diff --git a/grafana_wtf/core.py b/grafana_wtf/core.py index 47cd336..e952049 100644 --- a/grafana_wtf/core.py +++ b/grafana_wtf/core.py @@ -716,7 +716,7 @@ def add(item): for ds_uid in values: datasource = self.datasource_by_uid.get(ds_uid) if datasource is None: - log.warning(f"Data source '{ds_uid}' not found") + log.debug(f"Data source '{ds_uid}' not found") continue ds = dict( type=datasource.get("type"),