Beispiel #1
0
        public void WriteLine(string text, params object[] arg)
        {
            string formattedText = string.Format(text, arg);

            Session.AppendToLog(formattedText);
            ConnectionChannel.WriteLine(formattedText);
        }