mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
17 lines
No EOL
485 B
C#
17 lines
No EOL
485 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Cosmos.Debug.VSDebugEngine
|
|
{
|
|
public static class AD7Util
|
|
{
|
|
public static void Log(string message, params object[] args)
|
|
{
|
|
//File.AppendAllText(@"c:\data\sources\ad7.log", DateTime.Now.ToString("HH:mm:ss.ffffff: ") + String.Format(message, args) + Environment.NewLine);
|
|
}
|
|
}
|
|
} |