7 references to LogMaxBatchCharacters
Aspire.Hosting (3)
Dashboard\DashboardService.cs (3)
292
var resolvedContent = content.Length >
LogMaxBatchCharacters
293
? content[..
LogMaxBatchCharacters
]
301
if (currentChars <=
LogMaxBatchCharacters
)
Aspire.Hosting.Tests (4)
Dashboard\DashboardServiceTests.cs (4)
33
const int LongLineCharacters = DashboardServiceImpl.
LogMaxBatchCharacters
/ 3;
92
const int LongLineCharacters = DashboardServiceImpl.
LogMaxBatchCharacters
/ 3;
101
logger.LogInformation(new string('1', DashboardServiceImpl.
LogMaxBatchCharacters
));
119
l => Assert.Equal(DashboardServiceImpl.
LogMaxBatchCharacters
, l.Text.Length));