seb-win-refactoring/SafeExamBrowser.Logging/DefaultLogFormatter.cs

46 lines
1.3 KiB
C#
Raw Permalink Normal View History

2017-08-07 12:23:56 +02:00
/*
* Copyright (c) 2024 ETH Zürich, IT Services
2017-08-07 12:23:56 +02:00
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
using System;
using SafeExamBrowser.Logging.Contracts;
2017-08-07 12:23:56 +02:00
namespace SafeExamBrowser.Logging
2017-08-07 12:23:56 +02:00
{
/// <summary>
/// Default implementation of <see cref="ILogContentFormatter"/>.
/// </summary>
2017-08-07 12:23:56 +02:00
public class DefaultLogFormatter : ILogContentFormatter
{
public string Format(ILogContent content)
{
if (content is ILogText text)
2017-08-07 12:23:56 +02:00
{
return text.Text;
2017-08-07 12:23:56 +02:00
}
if (content is ILogMessage message)
2017-08-07 12:23:56 +02:00
{
return FormatLogMessage(message);
2017-08-07 12:23:56 +02:00
}
throw new NotImplementedException($"The default formatter is not yet implemented for log content of type {content.GetType()}!");
}
private string FormatLogMessage(ILogMessage message)
{
var date = message.DateTime.ToString("yyyy-MM-dd HH:mm:ss.fff");
var severity = message.Severity.ToString().ToUpper();
var threadId = message.ThreadInfo.Id < 10 ? $"0{message.ThreadInfo.Id}" : message.ThreadInfo.Id.ToString();
var threadName = message.ThreadInfo.HasName ? ": " + message.ThreadInfo.Name : string.Empty;
var threadInfo = $"[{threadId}{threadName}]";
2017-08-07 12:23:56 +02:00
return $"{date} {threadInfo} - {severity}: {message.Message}";
2017-08-07 12:23:56 +02:00
}
}
}