From c3d7b4de3e30cbc81ff13de30397860ed40afdb2 Mon Sep 17 00:00:00 2001 From: Andre Hartmann Date: Mon, 22 Jan 2024 07:56:02 +0100 Subject: [PATCH] Git: InstantBlame: Lower logging category for non-error `TextEditorWidget::fromEditor(editor)` fails in the DiffEditor, so this message is no warning but rather an info. Change-Id: I1635b77910e609bda470d2f657916bbc98860af4 Reviewed-by: Orgad Shaneh --- src/plugins/git/instantblame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/git/instantblame.cpp b/src/plugins/git/instantblame.cpp index df9d913c796..5921518c347 100644 --- a/src/plugins/git/instantblame.cpp +++ b/src/plugins/git/instantblame.cpp @@ -127,7 +127,7 @@ void InstantBlame::setup() const TextEditorWidget *widget = TextEditorWidget::fromEditor(editor); if (!widget) { - qCWarning(log) << "Cannot get widget for editor" << editor; + qCInfo(log) << "Cannot get widget for editor" << editor; return; }