mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
Fixed some project fragmentation that came from efforts to go portable
This commit is contained in:
parent
7d48e20aea
commit
d4c75e3974
40
MediaBrowser.Common/Logging/LogRow.cs
Normal file
40
MediaBrowser.Common/Logging/LogRow.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Text;
|
||||
|
||||
namespace MediaBrowser.Common.Logging
|
||||
{
|
||||
public struct LogRow
|
||||
{
|
||||
const string TimePattern = "h:mm:ss.fff tt d/M/yyyy";
|
||||
|
||||
public LogSeverity Severity { get; set; }
|
||||
public string Message { get; set; }
|
||||
public string Category { get; set; }
|
||||
public int ThreadId { get; set; }
|
||||
public string ThreadName { get; set; }
|
||||
public DateTime Time { get; set; }
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
StringBuilder builder = new StringBuilder();
|
||||
builder.Append(Time.ToString(TimePattern))
|
||||
.Append(" , ")
|
||||
.Append(Enum.GetName(typeof(LogSeverity), Severity))
|
||||
.Append(" , ")
|
||||
.Append(Encode(Message))
|
||||
.Append(" , ")
|
||||
.Append(Encode(Category))
|
||||
.Append(" , ")
|
||||
.Append(ThreadId)
|
||||
.Append(" , ")
|
||||
.Append(Encode(ThreadName));
|
||||
|
||||
return builder.ToString();
|
||||
}
|
||||
|
||||
private string Encode(string str)
|
||||
{
|
||||
return (str ?? "").Replace(",", ",,").Replace(Environment.NewLine, " [n] ");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user