18 lines
387 B
C#
18 lines
387 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Generator.Helpers
|
|||
|
{
|
|||
|
public static class LoggingHelpers
|
|||
|
{
|
|||
|
internal static string LogTimeTaken(double totalSeconds)
|
|||
|
{
|
|||
|
return Math.Round(totalSeconds, 2, MidpointRounding.ToEven).ToString();
|
|||
|
}
|
|||
|
|
|||
|
public static void LogToConsole(string message)
|
|||
|
{
|
|||
|
Console.WriteLine(message);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|