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