public LogReader(LogReaderInfo info)
		{
			Info = info;
			_filePath = string.IsNullOrEmpty(info.FilePath)
				            ? Path.Combine(Config.Instance.HearthstoneDirectory, $"Logs/{Info.Name}.log") : info.FilePath;
		}
		public LogReader(LogReaderInfo info)
		{
			_info = info;
			_filePath = Path.Combine(Config.Instance.HearthstoneDirectory, string.Format("Logs/{0}.log", _info.Name));
		}
 public LogReader(LogReaderInfo info)
 {
     Info      = info;
     _filePath = string.IsNullOrEmpty(info.FilePath)
                                     ? Path.Combine(Config.Instance.HearthstoneDirectory, $"Logs/{Info.Name}.log") : info.FilePath;
 }
Esempio n. 4
0
 public LogReader(LogReaderInfo info)
 {
     _info     = info;
     _filePath = Path.Combine(Config.Instance.HearthstoneDirectory, string.Format("Logs/{0}.log", _info.Name));
 }
		public LogReader(LogReaderInfo info)
		{
			_info = info;
			_filePath = string.IsNullOrEmpty(info.FilePath) ? Path.Combine(Config.Instance.HearthstoneDirectory, string.Format("Logs/{0}.log", _info.Name)) : info.FilePath;
		}
 public LogReader(LogReaderInfo info)
 {
     _info     = info;
     _filePath = string.IsNullOrEmpty(info.FilePath) ? Path.Combine(Config.Instance.HearthstoneDirectory, string.Format("Logs/{0}.log", _info.Name)) : info.FilePath;
 }