TeamCity.MSBuild.Logger/ILogFormatter.cs (10 lines of code) (raw):
namespace TeamCity.MSBuild.Logger
{
using System;
using JetBrains.Annotations;
internal interface ILogFormatter
{
[NotNull] string FormatLogTimeStamp(DateTime timeStamp);
[NotNull] string FormatTimeSpan(TimeSpan timeSpan);
}
}