/// <summary>
 /// Make all loggers created at anytime redirect to the Android logging system.
 /// </summary>
 public static void SetAndroidAsDefaultLogger()
 {
     LogServices.Initialize(x => new AndroidLoggerWrapper(), true);
 }
Пример #2
0
 /// <summary>
 /// Call this function to set ALL loggers to use log4net as the logging system.
 /// </summary>
 public static void SetLog4NetAsDefaultLogger()
 {
     LogServices.Initialize(x => new Log4NetWrapper(), true);
 }