11 lines
282 B
C#
11 lines
282 B
C#
namespace WguApp.Services;
|
|
|
|
public class LoggerService
|
|
{
|
|
public static void LogToFile(string text)
|
|
{
|
|
var logFilePath = Path.Combine(FileSystem.AppDataDirectory, "log.txt");
|
|
|
|
File.AppendAllText(logFilePath, $"{DateTime.UtcNow} : {text}\n");
|
|
}
|
|
} |