in gateway/Program.cs [40:56]
public static void LogMessage(string message, IndentOperation indentOp = IndentOperation.NoChange)
{
if (indentOp == IndentOperation.EndLevel)
{
indentLevel--;
if (indentLevel < 0) indentLevel = 0;
indentSpaces = new string(' ', indentLevel * 2);
}
// Get the local time zone and the current local time and year.
DateTime currentDate = DateTime.UtcNow;
System.Console.WriteLine("[{0}][info][startup] {2}{1}", currentDate.ToString("yyyy-MM-dd HH:mm:ss.fffZ"), message, indentSpaces);
if (indentOp == IndentOperation.BeginLevel)
{
indentLevel++;
indentSpaces = new string(' ', indentLevel * 2);
}
}