diff --git a/CHANGELOG.md b/CHANGELOG.md index 296556a10..24d45cab0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,6 +51,7 @@ - kandinsky-5 image and video on non-cuda platforms - lora loading when using torch without distributed support - google-genai auth, thanks @CalamitousFelicitousness + - reduce triton test verbosity ## Update for 2025-12-26 diff --git a/modules/devices.py b/modules/devices.py index 0020d07d9..dc0f0746b 100644 --- a/modules/devices.py +++ b/modules/devices.py @@ -400,7 +400,8 @@ def test_triton(early: bool = False): triton_ok = False except Exception as e: triton_ok = False - log.warning(f"Triton test fail: {e}") + line = str(e).splitlines()[0] + log.warning(f"Triton test fail: {line}") if debug: from modules import errors errors.display(e, 'Triton')