7 references to LogMaxBatchCharacters
Aspire.Hosting (3)
Dashboard\DashboardService.cs (3)
301
var resolvedContent = content.Length >
LogMaxBatchCharacters
302
? content[..
LogMaxBatchCharacters
]
310
if (currentChars <=
LogMaxBatchCharacters
)
Aspire.Hosting.Tests (4)
Dashboard\DashboardServiceTests.cs (4)
32
const int LongLineCharacters = DashboardServiceImpl.
LogMaxBatchCharacters
/ 3;
91
const int LongLineCharacters = DashboardServiceImpl.
LogMaxBatchCharacters
/ 3;
100
logger.LogInformation(new string('1', DashboardServiceImpl.
LogMaxBatchCharacters
));
118
l => Assert.Equal(DashboardServiceImpl.
LogMaxBatchCharacters
, l.Text.Length));