Ejemplo n.º 1
0
 /// <summary>
 ///     Returns <see langword="true" /> if logging is currently enabled.
 /// </summary>
 /// <returns>
 ///     A value of <see langword="true" /> if logging is currently enabled,
 ///     <see langword="false" /> otherwise.
 /// </returns>
 /// <remarks>
 ///     Logging is enabled if the number of <see cref="EnableLogging" /> calls is greater
 ///     than or equal to <see cref="DisableLogging" /> calls.
 /// </remarks>
 public static bool IsLoggingEnabled()
 {
     return(globalFactory.IsLoggingEnabled());
 }