🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

Microsoft.Extensions.Logging.Debug

Package Overview
Dependencies
Maintainers
3
Versions
169
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

microsoft.extensions.logging.debug - nuget Package Compare versions

Comparing version
2.0.0-preview1-final
to
1.1.2
lib/net451/Microsoft.Extensions.Logging.Debug.dll

Sorry, the diff of this file is not supported yet

+74
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Extensions.Logging.Debug</name>
</assembly>
<members>
<member name="T:Microsoft.Extensions.Logging.Debug.DebugLogger">
<summary>
A logger that writes messages in the debug output window only when a debugger is attached.
</summary>
</member>
<member name="M:Microsoft.Extensions.Logging.Debug.DebugLogger.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Extensions.Logging.Debug.DebugLogger"/> class.
</summary>
<param name="name">The name of the logger.</param>
</member>
<member name="M:Microsoft.Extensions.Logging.Debug.DebugLogger.#ctor(System.String,System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Extensions.Logging.Debug.DebugLogger"/> class.
</summary>
<param name="name">The name of the logger.</param>
<param name="filter">The function used to filter events based on the log level.</param>
</member>
<member name="M:Microsoft.Extensions.Logging.Debug.DebugLogger.BeginScope``1(``0)">
<inheritdoc />
</member>
<member name="M:Microsoft.Extensions.Logging.Debug.DebugLogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
<inheritdoc />
</member>
<member name="M:Microsoft.Extensions.Logging.Debug.DebugLogger.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})">
<inheritdoc />
</member>
<member name="T:Microsoft.Extensions.Logging.Debug.DebugLoggerProvider">
<summary>
The provider for the <see cref="T:Microsoft.Extensions.Logging.Debug.DebugLogger"/>.
</summary>
</member>
<member name="M:Microsoft.Extensions.Logging.Debug.DebugLoggerProvider.#ctor(System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Extensions.Logging.Debug.DebugLoggerProvider"/> class.
</summary>
<param name="filter">The function used to filter events based on the log level.</param>
</member>
<member name="M:Microsoft.Extensions.Logging.Debug.DebugLoggerProvider.CreateLogger(System.String)">
<inheritdoc />
</member>
<member name="T:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions">
<summary>
Extension methods for the <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory"/> class.
</summary>
</member>
<member name="M:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions.AddDebug(Microsoft.Extensions.Logging.ILoggerFactory)">
<summary>
Adds a debug logger that is enabled for <see cref="T:Microsoft.Extensions.Logging.LogLevel"/>.Information or higher.
</summary>
<param name="factory">The extension method argument.</param>
</member>
<member name="M:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions.AddDebug(Microsoft.Extensions.Logging.ILoggerFactory,System.Func{System.String,Microsoft.Extensions.Logging.LogLevel,System.Boolean})">
<summary>
Adds a debug logger that is enabled as defined by the filter function.
</summary>
<param name="factory">The extension method argument.</param>
<param name="filter">The function used to filter events based on the log level.</param>
</member>
<member name="M:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions.AddDebug(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.LogLevel)">
<summary>
Adds a debug logger that is enabled for <see cref="T:Microsoft.Extensions.Logging.LogLevel"/>s of minLevel or higher.
</summary>
<param name="factory">The extension method argument.</param>
<param name="minLevel">The minimum <see cref="T:Microsoft.Extensions.Logging.LogLevel"/> to be logged</param>
</member>
</members>
</doc>
+1
-6
<?xml version="1.0" encoding="utf-8"?>
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">
<Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" />
<Default Extension="psmdcp" ContentType="application/vnd.openxmlformats-package.core-properties+xml" />
<Default Extension="dll" ContentType="application/octet" />
<Default Extension="xml" ContentType="application/octet" />
<Default Extension="nuspec" ContentType="application/octet" />
</Types>
<Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" /><Default Extension="dll" ContentType="application/octet" /><Default Extension="xml" ContentType="application/octet" /><Default Extension="nuspec" ContentType="application/octet" /></Types>

@@ -20,5 +20,2 @@ <?xml version="1.0"?>

<summary>
<para>
This method is obsolete and will be removed in a future version. The recommended alternative is Microsoft.Extensions.Logging.Debug.DebugLogger(string).
</para>
Initializes a new instance of the <see cref="T:Microsoft.Extensions.Logging.Debug.DebugLogger"/> class.

@@ -45,5 +42,2 @@ </summary>

<summary>
<para>
This method is obsolete and will be removed in a future version. The recommended alternative is Microsoft.Extensions.Logging.Debug.DebugLoggerProvider().
</para>
Initializes a new instance of the <see cref="T:Microsoft.Extensions.Logging.Debug.DebugLoggerProvider"/> class.

@@ -54,3 +48,3 @@ </summary>

<member name="M:Microsoft.Extensions.Logging.Debug.DebugLoggerProvider.CreateLogger(System.String)">
<inheritdoc />
<inheritdoc />
</member>

@@ -62,13 +56,4 @@ <member name="T:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions">

</member>
<member name="M:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions.AddDebug(Microsoft.Extensions.Logging.LoggerFactory)">
<summary>
Adds a debug logger named 'Debug' to the factory.
</summary>
<param name="factory">The extension method argument.</param>
</member>
<member name="M:Microsoft.Extensions.Logging.DebugLoggerFactoryExtensions.AddDebug(Microsoft.Extensions.Logging.ILoggerFactory)">
<summary>
<para>
This method is obsolete and will be removed in a future version. The recommended alternative is to call the Microsoft.Extensions.Logging.AddDebug() extension method on the Microsoft.Extensions.Logging.LoggerFactory instance.
</para>
Adds a debug logger that is enabled for <see cref="T:Microsoft.Extensions.Logging.LogLevel"/>.Information or higher.

@@ -80,5 +65,2 @@ </summary>

<summary>
<para>
This method is obsolete and will be removed in a future version. The recommended alternative is to call the Microsoft.Extensions.Logging.AddDebug() extension method on the Microsoft.Extensions.Logging.LoggerFactory instance.
</para>
Adds a debug logger that is enabled as defined by the filter function.

@@ -91,5 +73,2 @@ </summary>

<summary>
<para>
This method is obsolete and will be removed in a future version. The recommended alternative is to call the Microsoft.Extensions.Logging.AddDebug() extension method on the Microsoft.Extensions.Logging.LoggerFactory instance.
</para>
Adds a debug logger that is enabled for <see cref="T:Microsoft.Extensions.Logging.LogLevel"/>s of minLevel or higher.

@@ -96,0 +75,0 @@ </summary>

@@ -5,21 +5,24 @@ <?xml version="1.0" encoding="utf-8"?>

<id>Microsoft.Extensions.Logging.Debug</id>
<version>2.0.0-preview1-final</version>
<version>1.1.2</version>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<licenseUrl>https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm</licenseUrl>
<projectUrl>https://www.asp.net/</projectUrl>
<iconUrl>https://go.microsoft.com/fwlink/?LinkID=288859</iconUrl>
<description>Debug output logger provider implementation for Microsoft.Extensions.Logging. This logger logs messages to a debugger monitor by writing messages with System.Diagnostics.Debug.WriteLine().</description>
<copyright>Copyright © Microsoft Corporation</copyright>
<tags>logging</tags>
<serviceable>true</serviceable>
<repository type="git" url="https://github.com/aspnet/Logging" />
<dependencies>
<group targetFramework=".NETFramework4.5.1">
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="[1.1.2, )" />
<dependency id="NETStandard.Library" version="[1.6.1, )" />
</group>
<group targetFramework=".NETStandard1.3">
<dependency id="Microsoft.Extensions.Logging" version="2.0.0-preview1-final" />
<dependency id="NETStandard.Library" version="2.0.0-preview1-25301-01" exclude="Build,Analyzers" />
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="[1.1.2, )" />
<dependency id="NETStandard.Library" version="[1.6.1, )" />
</group>
</dependencies>
<licenseUrl>http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm</licenseUrl>
<iconUrl>http://go.microsoft.com/fwlink/?LinkID=288859</iconUrl>
<copyright>Copyright © Microsoft Corporation</copyright>
<projectUrl>http://www.asp.net/</projectUrl>
</metadata>
</package>

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet