public static void LogMessage()

in sfintegration/ServiceData.cs [69:85]


        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][sfintegration] {2}{1}", currentDate.ToString("yyyy-MM-dd HH:mm:ss.fffZ"), message, indentSpaces);
            if (indentOp == IndentOperation.BeginLevel)
            {
                indentLevel++;
                indentSpaces = new string(' ', indentLevel * 2);
            }
        }