Aspects.Logging.Nlog.NLogLogger.Trace C# (CSharp) Method

Trace() public method

Logs the message with trace level.
public Trace ( string message ) : void
message string The message.
return void
        public void Trace(string message)
        {
            _logger.Trace(message);
        }