7 references to LogMaxBatchCharacters
Aspire.Hosting (3)
Dashboard\DashboardService.cs (3)
372
var resolvedContent = content.Length >
LogMaxBatchCharacters
373
? content[..
LogMaxBatchCharacters
]
381
if (currentChars <=
LogMaxBatchCharacters
)
Aspire.Hosting.Tests (4)
Dashboard\DashboardServiceTests.cs (4)
38
const int LongLineCharacters = DashboardServiceImpl.
LogMaxBatchCharacters
/ 3;
97
const int LongLineCharacters = DashboardServiceImpl.
LogMaxBatchCharacters
/ 3;
106
logger.LogInformation(new string('1', DashboardServiceImpl.
LogMaxBatchCharacters
));
124
l => Assert.Equal(DashboardServiceImpl.
LogMaxBatchCharacters
, l.Text.Length));