SWDEV-548352 - Remove logging limit in cltrace (#830)

* SWDEV-548352 - Add environment var to disable logging limit in cltrace

* SWDEV-548352 - Fix formatting

* SWDEV-548352 - Remove logging limit entirely

* SWDEV-548352 - Change logging limit to 6000

---------

Co-authored-by: Chinmay Deshpande <chdeshpa@amd.com>
This commit is contained in:
Deshpande, Chinmay Diwakar
2025-08-13 11:18:56 -07:00
committed by GitHub
parent 35c192f1af
commit cc99d17ddd
+2 -2
View File
@@ -1033,8 +1033,8 @@ getStringString(const char* src)
std::string str(src);
if (str.length() > 60) {
str = str.substr(0, 60).append("...");
if (str.length() > 6000) {
str = str.substr(0, 6000).append("...");
}
size_t found = 0;