Chinchilla.Logging.NLog.NLogLogger.DebugFormat C# (CSharp) Method

DebugFormat() public method

public DebugFormat ( string format ) : void
format string
return void
        public void DebugFormat(string format, params object[] args)
        {
            var message = string.Format(format, args);
            LogInternal(LogLevel.Debug, message);
        }