in TeamCity.MSBuild.Logger/MessageWriter.cs [151:156]
public void WriteLinePrettyFromResource(string resourceString, params object[] args)
{
if (resourceString == null) throw new ArgumentNullException(nameof(resourceString));
if (args == null) throw new ArgumentNullException(nameof(args));
WriteLinePrettyFromResource(_context.IsVerbosityAtLeast(LoggerVerbosity.Normal) ? _context.CurrentIndentLevel : 0, resourceString, args);
}