Chore: Remove reference to image renderer plugin in renderer not found log message (#112264)

This commit is contained in:
Will Browne
2025-10-10 12:17:18 +02:00
committed by GitHub
parent 69f788ad55
commit 59459560c2
+2 -2
View File
@@ -199,7 +199,7 @@ func (rs *RenderingService) Run(ctx context.Context) error {
}
rs.log.Debug("No image renderer found/installed. " +
"For image rendering support please install the grafana-image-renderer plugin. " +
"For image rendering support please use the Grafana Image Renderer remote rendering service. " +
"Read more at https://grafana.com/docs/grafana/latest/administration/image_rendering/")
<-ctx.Done()
@@ -271,7 +271,7 @@ func (rs *RenderingService) render(ctx context.Context, renderType RenderType, o
if !rs.IsAvailable(ctx) {
logger.Warn("Could not render image, no image renderer found/installed. " +
"For image rendering support please install the grafana-image-renderer plugin. " +
"For image rendering support please use the Grafana Image Renderer remote rendering service. " +
"Read more at https://grafana.com/docs/grafana/latest/administration/image_rendering/")
if opts.ErrorRenderUnavailable {
return nil, ErrRenderUnavailable