Rename Logging class to Logger

This commit is contained in:
Matt Nadareski
2016-03-28 18:40:35 -07:00
parent 0436671646
commit 9832c64f45
5 changed files with 10 additions and 9 deletions

View File

@@ -3,7 +3,7 @@ using System.IO;
namespace WoD.Helper
{
public class Logging
public class Logger
{
// Private instance variables
private bool _tofile;
@@ -28,7 +28,7 @@ namespace WoD.Helper
}
}
public Logging(bool tofile, string filename = "")
public Logger(bool tofile, string filename = "")
{
_tofile = tofile;
_filename = filename;