mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
14 lines
369 B
C#
14 lines
369 B
C#
using System;
|
|
|
|
namespace Cosmos.TestRunner.Core
|
|
{
|
|
public class OutputHandlerConsole: OutputHandlerTextBase
|
|
{
|
|
protected override void Log(string message)
|
|
{
|
|
Console.Write(DateTime.Now.ToString("hh:mm:ss.ffffff "));
|
|
Console.Write(new string(' ', mLogLevel * 2));
|
|
Console.WriteLine(message);
|
|
}
|
|
}
|
|
}
|