We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77aec2b commit 644eedcCopy full SHA for 644eedc
CHANGES.rst
@@ -5,6 +5,8 @@ grafana-wtf changelog
5
6
in progress
7
===========
8
+- Relaxed logging when dashboards defined as variables can not be found.
9
+ Thanks, @GrgDev.
10
11
2025-03-18 0.23.0
12
=================
grafana_wtf/core.py
@@ -716,7 +716,7 @@ def add(item):
716
for ds_uid in values:
717
datasource = self.datasource_by_uid.get(ds_uid)
718
if datasource is None:
719
- log.warning(f"Data source '{ds_uid}' not found")
+ log.debug(f"Data source '{ds_uid}' not found")
720
continue
721
ds = dict(
722
type=datasource.get("type"),
0 commit comments