BotGenerator/Generator/Helpers/LoggingHelpers.cs

18 lines
387 B
C#
Raw Normal View History

2021-08-12 16:52:06 +01:00
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);
}
}
}