blob: 6c035c486ecf6a8e5b293dc9cbd2094d96a7aa72 [file] [log] [blame]
#region Apache License
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to you under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#endregion
using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using log4net.Appender;
using log4net.Layout;
using log4net.Util;
using log4net.Repository;
using log4net.Repository.Hierarchy;
namespace log4net.Config;
/// <summary>
/// Use this class to quickly configure a <see cref="Hierarchy"/>.
/// </summary>
/// <remarks>
/// <para>
/// Allows very simple programmatic configuration of log4net.
/// </para>
/// <para>
/// Only one appender can be configured using this configurator.
/// The appender is set at the root of the hierarchy and all logging
/// events will be delivered to that appender.
/// </para>
/// <para>
/// Appenders can also implement the <see cref="log4net.Core.IOptionHandler"/> interface. Therefore
/// they would require that the <see cref="log4net.Core.IOptionHandler.ActivateOptions()"/> method
/// be called after the appenders properties have been configured.
/// </para>
/// </remarks>
/// <author>Nicko Cadell</author>
/// <author>Gert Driesen</author>
public static class BasicConfigurator
{
/// <summary>
/// The fully qualified type of the BasicConfigurator class.
/// </summary>
/// <remarks>
/// Used by the internal logger to record the Type of the
/// log message.
/// </remarks>
private static readonly Type _declaringType = typeof(BasicConfigurator);
/// <summary>
/// Initializes the log4net system with a default configuration.
/// </summary>
/// <remarks>
/// <para>
/// Initializes the log4net logging system using a <see cref="ConsoleAppender"/>
/// that will write to <c>Console.Out</c>. The log messages are
/// formatted using the <see cref="PatternLayout"/> layout object
/// with the <see cref="PatternLayout.DetailConversionPattern"/>
/// layout style.
/// </para>
/// </remarks>
public static ICollection Configure() => Configure(LogManager.GetRepository(Assembly.GetCallingAssembly()));
/// <summary>
/// Initializes the log4net system using the specified appenders.
/// </summary>
/// <param name="appenders">The appenders to use to log all logging events.</param>
/// <remarks>
/// <para>
/// Initializes the log4net system using the specified appenders.
/// </para>
/// </remarks>
public static ICollection Configure(params IAppender[] appenders)
{
List<LogLog> configurationMessages = new();
ILoggerRepository repository = LogManager.GetRepository(Assembly.GetCallingAssembly());
using (new LogLog.LogReceivedAdapter(configurationMessages))
{
InternalConfigure(repository, appenders);
}
repository.ConfigurationMessages = configurationMessages;
return configurationMessages;
}
/// <summary>
/// Initializes the <see cref="ILoggerRepository"/> with a default configuration.
/// </summary>
/// <param name="repository">The repository to configure.</param>
/// <remarks>
/// <para>
/// Initializes the specified repository using a <see cref="ConsoleAppender"/>
/// that will write to <c>Console.Out</c>. The log messages are
/// formatted using the <see cref="PatternLayout"/> layout object
/// with the <see cref="PatternLayout.DetailConversionPattern"/>
/// layout style.
/// </para>
/// </remarks>
public static ICollection Configure(ILoggerRepository repository)
{
repository.EnsureNotNull();
List<LogLog> configurationMessages = [];
using (new LogLog.LogReceivedAdapter(configurationMessages))
{
// Create the layout
PatternLayout layout = new() { ConversionPattern = PatternLayout.DetailConversionPattern };
layout.ActivateOptions();
// Create the appender
ConsoleAppender appender = new() { Layout = layout };
appender.ActivateOptions();
InternalConfigure(repository, appender);
}
repository.ConfigurationMessages = configurationMessages;
return configurationMessages;
}
/// <summary>
/// Initializes the <see cref="ILoggerRepository"/> using the specified appenders.
/// </summary>
/// <param name="repository">The repository to configure.</param>
/// <param name="appenders">The appenders to use to log all logging events.</param>
/// <remarks>
/// <para>
/// Initializes the <see cref="ILoggerRepository"/> using the specified appender.
/// </para>
/// </remarks>
public static ICollection Configure(ILoggerRepository repository, params IAppender[] appenders)
{
repository.EnsureNotNull();
List<LogLog> configurationMessages = new();
using (new LogLog.LogReceivedAdapter(configurationMessages))
{
InternalConfigure(repository, appenders);
}
repository.ConfigurationMessages = configurationMessages;
return configurationMessages;
}
private static void InternalConfigure(ILoggerRepository repository, params IAppender[] appenders)
{
if (repository is IBasicRepositoryConfigurator configurableRepository)
{
configurableRepository.Configure(appenders);
}
else
{
LogLog.Warn(_declaringType, $"BasicConfigurator: Repository [{repository}] does not support the BasicConfigurator");
}
}
}