git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@2049 993157c7-ee19-0410-b2c4-bb4e9862e678
This commit is contained in:
22
OpenRa.Game/Support/Log.cs
Normal file
22
OpenRa.Game/Support/Log.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.IO;
|
||||
|
||||
namespace OpenRa.Game
|
||||
{
|
||||
static class Log
|
||||
{
|
||||
static StreamWriter writer = File.CreateText("../../../log.txt");
|
||||
|
||||
static Log()
|
||||
{
|
||||
writer.AutoFlush = true;
|
||||
}
|
||||
|
||||
public static void Write(string format, params object[] args)
|
||||
{
|
||||
writer.WriteLine(format, args);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user