Beispiel #1
0
 /// <summary>
 /// Logs a message as trace if <see cref="LogLevel"/> is equal to <see cref="Nuke.Common.LogLevel.Trace"/>.
 /// </summary>
 public static void Trace(string text = null)
 {
     if (LogLevel <= LogLevel.Trace)
     {
         OutputSink.Trace(text ?? string.Empty);
     }
 }
Beispiel #2
0
 public void Trace(string text)
 {
     _outputSink.Trace(text);
 }