Ejemplo n.º 1
0
 /// <summary>
 /// Returns all the currently defined loggers in the specified assembly's domain.
 /// </summary>
 /// <param name="assembly">the assembly to use to lookup the domain</param>
 /// <remarks>
 /// The root logger is <b>not</b> included in the returned array.
 /// </remarks>
 /// <returns>All the defined loggers</returns>
 public static IExtLog[] GetCurrentLoggers(Assembly assembly)
 {
     return(WrapLoggers(LoggerManager.GetCurrentLoggers(assembly)));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Returns all the currently defined loggers in the specified assembly's repository.
 /// </summary>
 /// <param name="repositoryAssembly">The assembly to use to lookup the repository.</param>
 /// <remarks>
 /// The root logger is <b>not</b> included in the returned array.
 /// </remarks>
 /// <returns>All the defined loggers.</returns>
 public static ILog[] GetCurrentLoggers(Assembly repositoryAssembly)
 {
     return(WrapLoggers(LoggerManager.GetCurrentLoggers(repositoryAssembly)));
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Returns all the currently defined loggers in the specified domain.
 /// </summary>
 /// <param name="domain">the domain to lookup in</param>
 /// <remarks>
 /// The root logger is <b>not</b> included in the returned array.
 /// </remarks>
 /// <returns>All the defined loggers</returns>
 public static IExtLog[] GetCurrentLoggers(string domain)
 {
     return(WrapLoggers(LoggerManager.GetCurrentLoggers(domain)));
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Returns all the currently defined loggers in the specified repository.
 /// </summary>
 /// <param name="repository">The repository to lookup in.</param>
 /// <remarks>
 /// The root logger is <b>not</b> included in the returned array.
 /// </remarks>
 /// <returns>All the defined loggers.</returns>
 public static ILog[] GetCurrentLoggers(string repository)
 {
     return(WrapLoggers(LoggerManager.GetCurrentLoggers(repository)));
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Returns all the currently defined loggers in the specified domain.
 /// </summary>
 /// <param name="domain">the domain to lookup in</param>
 /// <remarks>
 /// The root logger is <b>not</b> included in the returned array.
 /// </remarks>
 /// <returns>All the defined loggers</returns>
 public static IProgramLog[] GetCurrentLoggers(string domain)
 {
     return(ProgramLogManager.WrapLoggers(LoggerManager.GetCurrentLoggers(domain)));
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Returns all the currently defined loggers in the specified assembly's domain.
 /// </summary>
 /// <param name="assembly">the assembly to use to lookup the domain</param>
 /// <remarks>
 /// The root logger is <b>not</b> included in the returned array.
 /// </remarks>
 /// <returns>All the defined loggers</returns>
 public static IProgramLog[] GetCurrentLoggers(Assembly assembly)
 {
     return(ProgramLogManager.WrapLoggers(LoggerManager.GetCurrentLoggers(assembly)));
 }
Ejemplo n.º 7
0
 /// <summary>
 /// Returns all the currently defined loggers in the specified assembly's domain.
 /// </summary>
 /// <param name="domainAssembly">The assembly to use to lookup the domain.</param>
 /// <remarks>
 /// The root logger is <b>not</b> included in the returned array.
 /// </remarks>
 /// <returns>All the defined loggers.</returns>
 public static ILog[] GetCurrentLoggers(Assembly domainAssembly)
 {
     return(WrapLoggers(LoggerManager.GetCurrentLoggers(domainAssembly)));
 }
 /// <summary>
 /// Liefert alle aktuell definierten Logger für die angegebene
 /// Assembly <paramref name="theAssembly"/>.
 /// </summary>
 /// <remarks>
 /// <para>Der Root-Logger ist <b>nicht</b> enthalten.</para>
 /// </remarks>
 /// <param name="theAssembly">Die spezifizierte Assembly.</param>
 /// <returns>Alle definierten Logger.</returns>
 public static ITraceLog[] GetCurrentLoggers(Assembly theAssembly)
 {
     return(WrapLoggers(LoggerManager.GetCurrentLoggers(theAssembly)));
 }