mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
16 lines
429 B
C#
16 lines
429 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|