-
Notifications
You must be signed in to change notification settings - Fork 0
6ac047be f42d 1c6e bfc2 063fc7bed9a1
Axel Kesseler edited this page Mar 1, 2023
·
2 revisions
This method writes the exception for provided scope into the logger using Trace as logging level.
Namespace: Plexdata.LogWriter.Extensions
Assembly: Plexdata.LogWriter.Abstraction (in Plexdata.LogWriter.Abstraction.dll) Version: 1.0.7.1
C#
public static void Trace<TScope>(
this ILogger logger,
TScope scope,
Exception exception
)
- logger
- Type: Plexdata.LogWriter.Abstraction.ILogger
The logger used to write the message. - scope
- Type: TScope
The logging scope instance to be used. - exception
- Type: System.Exception
The exception to be written.
- TScope
- The type or a Guid that represents the logging scope.
In Visual Basic and C#, you can call this method as an instance method on any object of type ILogger. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
The logging scope is intended to be more than just the type name.
- If parameter scope is for example of type String then this string is used.
- If parameter scope is for example of type Guid then the guid's string representation is taken by calling ToString(). Using a Guid as scope type can be seen as some kind of correlation ID, especially if this Guid is the same for multiple calls.
- If parameter scope is for example of type MemberInfo then the referenced member's Name is taken instead.
- In all other cases the scope text is either taken from the type's FullName or it is just the Name of type TScope. The usage of full or short name is determined from current settings.
null
or if exception is null
.
LogLevelTraceExtension Class
Trace Overload
Plexdata.LogWriter.Extensions Namespace