Title:
Some logging return {0} instead of variable value
Created:
6/18/2020 8:30:10 PM by T0T4R4
Status:
closed on 8/18/2020 10:25:31 PM
Last pulled:
9/10/2020 8:41:52 AM
Description:
Many places in the code is missing either String.format() or should use string interpolation ${} to include the variables as currently it does not work as you can see below, the LogDebug function does *not* do string replacement properly by itself : ` this.Logger.LogDebug("Triggering build configuration {0}...", this.BuildConfigurationId); ` See the output in BM missing the variable value : ![image](https://user-images.githubusercontent.com/1294511/85084277-acb8b700-b217-11ea-8910-bc5d538ef5ac.png)