Class LogEventArgs
- Namespace
- LibVLCSharp.Shared
- Assembly
- LibVLCSharp.dll
The LibVLC Log Event Arg
public sealed class LogEventArgs : EventArgs
- Inheritance
-
LogEventArgs
- Inherited Members
Properties
FormattedLog
Helper property with already formatted log message
public string FormattedLog { get; }
Property Value
Level
The severity of the log message. By default, you will only get error messages, but you can get all messages by specifying "-vv" in the options.
public LogLevel Level { get; }
Property Value
Message
The log message
public string Message { get; }
Property Value
Module
The name of the module that emitted the message
public string? Module { get; }
Property Value
SourceFile
The source file that emitted the message. This may be null if that info is not available, i.e. always if you are using a release version of VLC.
public string? SourceFile { get; }
Property Value
SourceLine
The line in the SourceFile at which the message was emitted. This may be null if that info is not available, i.e. always if you are using a release version of VLC.
public uint? SourceLine { get; }
Property Value
- uint?