mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
16 lines
376 B
C#
16 lines
376 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Cosmos.Debug.Kernel;
|
|
|
|
namespace Cosmos.System.FileSystem
|
|
{
|
|
public static class FatHelpers
|
|
{
|
|
private static Debugger mDebugger = new Debugger("FAT", "Debug");
|
|
public static void Debug(string message)
|
|
{
|
|
mDebugger.Send("FAT Debug: " + message);
|
|
}
|
|
}
|
|
}
|