Exemplo n.º 1
0
 /// <summary>
 /// Performs an intiailization of <see cref="LoggerManager"/> using the specified manager.
 /// </summary>
 /// <param name="loggerManager">Identifies the <see cref="ILoggerManager"/> to use.</param>
 public static void Start(ILoggerManager loggerManager, Uri loggerServiceUri)
 {
     lock (staticLockObject)
     {
         manager = loggerManager;
         manager.Initialize(loggerServiceUri);
         started = true;
     }
 }