Beispiel #1
0
        /// <summary>
        /// Use this method to disable the logging subsystem
        /// Can be called only once per process lifetime.
        /// </summary>
        public static void ConfigureAsDisabled()
        {
            CheckConfigured();

            _current = InitEmptyConfig();
        }
Beispiel #2
0
 /// <summary>
 /// Resets existing configuration of the logging subsystem (in case you need reconfigure it)
 /// </summary>
 public static void Reset()
 {
     _current = null;
 }