ArcStache.ComLogUtil.LogDebug C# (CSharp) Метод

LogDebug() публичный Метод

Logs the info.
public LogDebug ( string className, string publicMethodName, string message ) : void
className string Name of the source class.
publicMethodName string Name of the public method.
message string The message.
Результат void
        public void LogDebug(string className, string publicMethodName, string message)
        {
            this.Log(LogLevel.Debug, string.Format("{0}::{1}{2}{3}", className, publicMethodName, _separator, message));
        }