From 0ce09d917c30a2cb2f2d87b08abe1d10971b3190 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Wed, 24 Apr 2024 11:01:30 +0200 Subject: [PATCH] message has profile name in bold CURA-11153 --- printer-linter/src/printerlinter/linters/profile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/printer-linter/src/printerlinter/linters/profile.py b/printer-linter/src/printerlinter/linters/profile.py index 84104aa024..924e13079a 100644 --- a/printer-linter/src/printerlinter/linters/profile.py +++ b/printer-linter/src/printerlinter/linters/profile.py @@ -29,7 +29,7 @@ class Profile(Linter): yield Diagnostic( file=self._file, diagnostic_name="diagnostic-long-profile-names", - message = f"The profile name exceeds the maximum length limit. For optimal results, please limit it to 20 characters or fewer.", + message = f"The profile name **{name_of_profile}** exceeds the maximum length limit. For optimal results, please limit it to 20 characters or fewer.", level="Warning", offset = found.span(0)[0] )