Exemplo n.º 1
0
 /// <summary>
 ///     Activates the log tag by adding it to the list of those already active.
 /// </summary>
 /// <param name="tag">LogTag to activate</param>
 public static void ActivateLogTag(LogTag tag)
 {
     ActiveLogTags.Add(tag.Name);
 }
Exemplo n.º 2
0
 /// <summary>
 ///     Activates the log tag by adding it to the list of those already active.
 /// </summary>
 /// <param name="tagName">Name of the tag - null not allowed!.</param>
 public static void ActivateLogTag(string tagName)
 {
     ActiveLogTags.Add(tagName);
 }